initial commit

This commit is contained in:
2022-10-04 14:08:04 +02:00
commit 0636c61438
5 changed files with 109 additions and 0 deletions

20
shell.nix Normal file
View File

@@ -0,0 +1,20 @@
{ mkShell
, sops-import-keys-hook
, ssh-to-pgp
, sops-init-gpg-key
, sops
}:
mkShell {
sopsPGPKeyDirs = [
"./machines/secrets/keys/hosts"
"./machines/secrets/keys/users"
];
nativeBuildInputs = [
ssh-to-pgp
sops-import-keys-hook
sops-init-gpg-key
sops
];
}