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 = {
email = "git@noahknegt.com";
};
commit = {
gpgSign = true;
};
tag = {
gpgSign = true;
};
};
}
{
@@ -38,6 +46,15 @@
contents = {
user = {
email = "git@noahknegt.com";
signingKey = "~/.ssh/id_open_source.pub";
};
commit = {
gpgSign = true;
};
tag = {
gpgSign = true;
};
};
}