mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-03-19 06:53:02 +00:00
15 lines
244 B
Nix
15 lines
244 B
Nix
|
# shell.nix
|
||
|
with import <nixpkgs> {};
|
||
|
mkShell {
|
||
|
sopsPGPKeyDirs = [
|
||
|
"./keys"
|
||
|
];
|
||
|
sopsPGPKeys = [
|
||
|
"./existing-key.gpg"
|
||
|
"./non-existing-key.gpg"
|
||
|
];
|
||
|
nativeBuildInputs = [
|
||
|
(pkgs.callPackage ../../.. {}).sops-pgp-hook
|
||
|
];
|
||
|
}
|