From 301b388b29dbd37fb94acceae8b1f829c970cd8c Mon Sep 17 00:00:00 2001 From: Henri Dohmen Date: Sun, 12 Apr 2026 23:11:23 +0200 Subject: [PATCH] fix issue where two gpg-agents spawn --- mod/desktop/gpg.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mod/desktop/gpg.nix b/mod/desktop/gpg.nix index 258c206..b39435c 100644 --- a/mod/desktop/gpg.nix +++ b/mod/desktop/gpg.nix @@ -32,6 +32,10 @@ in enable = true; enableSshSupport = true; pinentry.package = pkgs.pinentry-gtk2; + + # Set by home.programs.fish.enable = true sometimes spawns two competing + # gpg-agents. https://github.com/nix-community/home-manager/issues/6067 + enableFishIntegration = false; }; }; };