Update git config with commit signing

This commit is contained in:
2025-03-01 13:05:39 +01:00
parent 290b6d4447
commit 91bc2efc96

View File

@@ -31,6 +31,14 @@
user = { user = {
email = "git@noahknegt.com"; email = "git@noahknegt.com";
}; };
commit = {
gpgSign = true;
};
tag = {
gpgSign = true;
};
}; };
} }
{ {
@@ -38,6 +46,15 @@
contents = { contents = {
user = { user = {
email = "git@noahknegt.com"; email = "git@noahknegt.com";
signingKey = "~/.ssh/id_open_source.pub";
};
commit = {
gpgSign = true;
};
tag = {
gpgSign = true;
}; };
}; };
} }