Commit 0844edf744cc
Changed files (1)
users
vincent
core
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
});
};
}
-