mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
3f7585af77
Signed-off-by: Magic_RB <magic_rb@redalder.org>
27 lines
630 B
Nix
27 lines
630 B
Nix
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
{ inputs, ... }:
|
|
{
|
|
perSystem = {pkgs, ...}:
|
|
let
|
|
pkgs-hashicorp = inputs.nixpkgs-hashicorp.legacyPackages.${pkgs.stdenv.system};
|
|
in
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
lefthook
|
|
alejandra
|
|
reuse
|
|
pkgs-hashicorp.vault
|
|
pkgs-hashicorp.nomad
|
|
pkgs-hashicorp.consul
|
|
dnsutils
|
|
qemu_kvm
|
|
usbutils
|
|
jq
|
|
];
|
|
};
|
|
};
|
|
}
|