Commit 0844edf744cc

Vincent Demeester <vincent@sbr.pm>
2025-01-09 10:07:46
users/vincent: disable-ccid in gpg configuration
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 51d1360
Changed files (1)
users
vincent
users/vincent/core/gpg.nix
@@ -5,6 +5,14 @@ let
 in
 {
   home.packages = with pkgs; [ gnupg ];
+  programs.gpg = {
+    enable = true;
+
+    # https://support.yubico.com/hc/en-us/articles/4819584884124-Resolving-GPG-s-CCID-conflicts
+    scdaemonSettings = {
+      disable-ccid = true;
+    };
+  };
   services = {
     gpg-agent = {
       enable = true;
@@ -18,4 +26,3 @@ in
     });
   };
 }
-