[NixOS] Use gnupg 2_4_0 to avoid hanging emacs in loop when writing

This commit is contained in:
2023-08-03 20:47:12 -06:00
parent 87842d31cf
commit bd3eb57de3
3 changed files with 20 additions and 2 deletions

View File

@@ -17,12 +17,14 @@ inputs: { pkgs, config, ... }: {
enable = true;
};
programs.gpg.package = pkgs.gnupg_2_4_0;
services.gpg-agent = {
enable = true;
defaultCacheTtl = 8 * 60 * 60;
maxCacheTtl = 8 * 60 * 60;
enableSshSupport = true;
pinentryFlavor = "qt";
pinentryFlavor = "gnome3";
};
services.blueman-applet = {