diff --git a/modules/home/tools/git/default.nix b/modules/home/tools/git/default.nix index 7b23492..0ab4d3e 100644 --- a/modules/home/tools/git/default.nix +++ b/modules/home/tools/git/default.nix @@ -17,7 +17,7 @@ in enable = mkEnableOption "Git"; userName = mkOpt types.str "Philipp" "The name to configure git with."; userEmail = mkOpt types.str "philipp@boehm.sh" "The email to configure git with."; - signingKey = mkOpt types.str "AA5E5A3C" "The key ID to sign commits with."; + signingKey = mkOpt types.str "0F21E3C3" "The key ID to sign commits with."; signByDefault = mkOpt types.bool true "Whether to sign commits by default."; }; diff --git a/modules/nixos/system/gnupg/default.nix b/modules/nixos/system/gnupg/default.nix index f7527d3..dc744a8 100644 --- a/modules/nixos/system/gnupg/default.nix +++ b/modules/nixos/system/gnupg/default.nix @@ -19,7 +19,7 @@ in services.pcscd.enable = true; programs.gnupg.agent = { enable = true; - enableSSHSupport = true; + enableSSHSupport = false; pinentryPackage = pkgs.pinentry; }; };