From 2e235dd1c7dadbaebbdaa7e3693d612060c8ea97 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Wed, 26 Jun 2024 13:55:18 +0200 Subject: [PATCH] gpg: Switch to pinentry-qt The Gnome 3 version has a weird issue where only about every fifth keypress is accepted. --- users/simon/modules/gpg.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/simon/modules/gpg.nix b/users/simon/modules/gpg.nix index e7308d5..0accca8 100644 --- a/users/simon/modules/gpg.nix +++ b/users/simon/modules/gpg.nix @@ -20,7 +20,7 @@ enableZshIntegration = true; enableSshSupport = lib.mkDefault nixosConfig.sbruder.gui.enable; - pinentryPackage = if nixosConfig.sbruder.gui.enable then pkgs.pinentry-gnome3 else pkgs.pinentry-curses; + pinentryPackage = if nixosConfig.sbruder.gui.enable then pkgs.pinentry-qt else pkgs.pinentry-curses; defaultCacheTtl = 300; defaultCacheTtlSsh = defaultCacheTtl;