From 53cf2d0e95c38fa48e40e64406445c5d5e6fbf61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Gro=C3=9Fmann?= Date: Tue, 24 Oct 2023 23:10:04 +0200 Subject: [PATCH] chore: switch pinentry to gnome --- modules/graphical/default.nix | 2 ++ users/common/programs/gpg.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/graphical/default.nix b/modules/graphical/default.nix index b630790..5304aa4 100644 --- a/modules/graphical/default.nix +++ b/modules/graphical/default.nix @@ -23,6 +23,8 @@ in { ]; config = { + # needed for gnome pinentry + services.dbus.packages = [pkgs.gcr]; stylix = { autoEnable = false; polarity = "dark"; diff --git a/users/common/programs/gpg.nix b/users/common/programs/gpg.nix index 5554ca3..5bdafde 100644 --- a/users/common/programs/gpg.nix +++ b/users/common/programs/gpg.nix @@ -2,7 +2,7 @@ services.gpg-agent = { enable = true; enableSshSupport = true; - pinentryFlavor = "qt"; + pinentryFlavor = "gnome3"; }; programs.gpg = {