From b0682b23d5117b40ee9fd2cb5ba8339754784d30 Mon Sep 17 00:00:00 2001 From: Philipp Date: Tue, 12 Aug 2025 13:31:09 +0200 Subject: [PATCH] fix(git): Update git to use the new PGP Key --- modules/home/tools/git/default.nix | 2 +- modules/nixos/system/gnupg/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }; };