1
0
Fork 0

fix(git): Update git to use the new PGP Key

This commit is contained in:
Philipp 2025-08-12 13:31:09 +02:00
parent 817858d6ee
commit b0682b23d5
Signed by: Philipp
GPG key ID: B27C3DE2FD94AFC3
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ in
enable = mkEnableOption "Git"; enable = mkEnableOption "Git";
userName = mkOpt types.str "Philipp" "The name to configure git with."; userName = mkOpt types.str "Philipp" "The name to configure git with.";
userEmail = mkOpt types.str "philipp@boehm.sh" "The email 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."; signByDefault = mkOpt types.bool true "Whether to sign commits by default.";
}; };

View file

@ -19,7 +19,7 @@ in
services.pcscd.enable = true; services.pcscd.enable = true;
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
enableSSHSupport = true; enableSSHSupport = false;
pinentryPackage = pkgs.pinentry; pinentryPackage = pkgs.pinentry;
}; };
}; };