This commit is contained in:
2023-02-22 14:16:04 -05:00
parent 8693b08c96
commit 29566256bb
6 changed files with 172 additions and 128 deletions

22
shell.nix Normal file
View File

@@ -0,0 +1,22 @@
{ mkShell
, sops-import-keys-hook
, ssh-to-pgp
, sops-init-gpg-key
, sops
, deploy-rs
, nixpkgs-fmt
, 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
];
}