소스 검색

feat(nix): set pinentry package for gpg

This commit sets the pinentry package to pinentry-gtk2 for gnupg.
Zander Hawke 10 달 전
부모
커밋
11390586f9
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      home/features/cli/gnupg.nix

+ 1 - 4
home/features/cli/gnupg.nix

@@ -30,11 +30,8 @@ in
     enable = lib.mkDefault true;
     defaultCacheTtl = 600;
     maxCacheTtl = 7200;
+    pinentry.package = pkgs.pinentry-gtk2;
     enableExtraSocket = true;
     enableSshSupport = true;
-    extraConfig = ''
-      keep-tty
-      keep-display
-    '';
   };
 }