chore: sign tags and commits by default

Signed-off-by: jolheiser <git@jolheiser.com>
main
jolheiser 2024-07-10 11:51:11 -05:00
parent f66a3fe2f3
commit ec01830ff6
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,9 @@
};
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAUxLwkJOlalAHTdkbh+m49XTZGKDqWz1o/o8OLmtQdX";
sshSigning = {
commit.gpgsign = true;
user.signingkey = key;
commit.gpgSign = true;
tag.gpgSign = true;
gpg = {
format = "ssh";
ssh.allowedSignersFile = "${pkgs.writeText "allowedSigners" "git@jolheiser.com ${key}"}";
@ -40,7 +41,6 @@ in {
ignores = [".idea/" "result" "node_modules" "ve"];
extraConfig =
{
commit.gpgsign = true;
init.defaultBranch = "main";
merge.conflictstyle = "zdiff3";
diff.colorMoved = "default";