diff --git a/modules/home/tools/git/default.nix b/modules/home/tools/git/default.nix index f94dfa5..2b49b29 100644 --- a/modules/home/tools/git/default.nix +++ b/modules/home/tools/git/default.nix @@ -16,7 +16,7 @@ in enable = mkBoolOpt true "Enable Git (Default true)"; userName = mkOpt types.str user.fullName "The name to configure git with."; userEmail = mkOpt types.str user.email "The email to configure git with."; - signingKey = mkOpt types.str "6995A5FF33791B7B" "The pub key to sign commits with."; + signingKey = mkOpt types.str "ACCFA2DB47795D9E" "The pub key to sign commits with."; signByDefault = mkOpt types.bool true "Whether to sign commits by default."; }; diff --git a/modules/nixos/tools/git/default.nix b/modules/nixos/tools/git/default.nix index 8b37b71..aea0314 100644 --- a/modules/nixos/tools/git/default.nix +++ b/modules/nixos/tools/git/default.nix @@ -17,7 +17,7 @@ in enable = mkBoolOpt true "Wether or not to enable git (Default enabled)"; userName = mkOpt types.str user.fullName "The name to use git with"; userEmail = mkOpt types.str user.email "The email to use git with"; - signingKey = mkOpt types.str "6995A5FF33791B7B" "The key ID to sign commits with."; + signingKey = mkOpt types.str "ACCFA2DB47795D9E" "The key ID to sign commits with."; }; config = mkIf cfg.enable {