From f26aa4b76fb7606127032d33ac73d7d507d82758 Mon Sep 17 00:00:00 2001 From: Axel Karjalainen Date: Sun, 8 Dec 2024 20:30:36 +0200 Subject: [PATCH] gpg-agent: fix GCR DBus package note D-Bus services are queried from Home Manager packages too. NixOS is not required. --- modules/services/gpg-agent.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/modules/services/gpg-agent.nix b/modules/services/gpg-agent.nix index 8bfe68aae..6bb19abe8 100644 --- a/modules/services/gpg-agent.nix +++ b/modules/services/gpg-agent.nix @@ -235,15 +235,12 @@ in { example = literalExpression "pkgs.pinentry-gnome3"; default = null; description = '' - Which pinentry interface to use. If not - `null`, it sets - {option}`pinentry-program` in - {file}`gpg-agent.conf`. Beware that - `pinentry-gnome3` may not work on non-Gnome - systems. You can fix it by adding the following to your - system configuration: + Which pinentry interface to use. If not `null`, it sets + {option}`pinentry-program` in {file}`gpg-agent.conf`. Beware that + `pinentry-gnome3` may not work on non-GNOME systems. You can fix it by + adding the following to your configuration: ```nix - services.dbus.packages = [ pkgs.gcr ]; + home.packages = [ pkgs.gcr ]; ``` ''; };