From fb13b01ffd80b0e8ba33d5a4e8e9e2f3bec45dea Mon Sep 17 00:00:00 2001 From: irl Date: Fri, 6 Jun 2025 11:08:48 +0100 Subject: [PATCH] feat: don't use gpg-agent for ssh --- nixos/hosts/laptop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/hosts/laptop/default.nix b/nixos/hosts/laptop/default.nix index f81eb56..21e6574 100644 --- a/nixos/hosts/laptop/default.nix +++ b/nixos/hosts/laptop/default.nix @@ -53,7 +53,7 @@ hardware.gpgSmartcards.enable = true; programs.gnupg.agent = { enable = true; - enableSSHSupport = true; + # enableSSHSupport = true; }; system.stateVersion = "25.05";