mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
26 lines
376 B
Nix
26 lines
376 B
Nix
{ mkShell
|
|
, sops-import-keys-hook
|
|
, ssh-to-pgp
|
|
, sops-init-gpg-key
|
|
, sops
|
|
, deploy-rs
|
|
, nixpkgs-fmt
|
|
, knot-dns
|
|
, lefthook
|
|
, python3
|
|
}:
|
|
|
|
mkShell {
|
|
sopsPGPKeyDirs = [ "./nixos/secrets/keys" ];
|
|
nativeBuildInputs = [
|
|
python3.pkgs.invoke
|
|
ssh-to-pgp
|
|
sops-import-keys-hook
|
|
sops-init-gpg-key
|
|
sops
|
|
deploy-rs
|
|
nixpkgs-fmt
|
|
lefthook
|
|
knot-dns
|
|
];
|
|
}
|