From 85546a5ab701c82328fbf27b0a88f75e8e5e4696 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Fri, 23 Apr 2021 09:31:03 +0200 Subject: [PATCH] shell.nix: Make host key import find gpg --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 2c39b5a..c6c379b 100644 --- a/shell.nix +++ b/shell.nix @@ -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 ''; }