shell.nix: Make host key import find gpg

pull/52/head
Simon Bruder 2021-04-23 09:31:03 +02:00
parent 4d6530a56d
commit 85546a5ab7
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 1 additions and 1 deletions

View File

@ -60,6 +60,6 @@ pkgs.mkShell {
shellHook = ''
${pre-commit-check.shellHook}
find ${./. + "/keys"} -type f -print0 | xargs -0 gpg --quiet --import
find ${./. + "/keys"} -type f -print0 | xargs -0 ${pkgs.gnupg}/bin/gpg --quiet --import
'';
}