mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
15 lines
279 B
Nix
15 lines
279 B
Nix
# shell.nix
|
|
with import <nixpkgs> {};
|
|
mkShell {
|
|
sopsPGPKeyDirs = [
|
|
"./keys"
|
|
];
|
|
sopsPGPKeys = [
|
|
"./existing-key.gpg"
|
|
"./non-existing-key.gpg"
|
|
];
|
|
sopsCreateGPGHome = "1";
|
|
nativeBuildInputs = [
|
|
(pkgs.callPackage ../../.. {}).sops-import-keys-hook
|
|
];
|
|
}
|