feat: sign commits with git and the predefined signing key

This commit is contained in:
EinEtwas 2024-10-24 00:27:09 +02:00
parent 24f336d9b5
commit 17df1f78b0
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0

View file

@ -7,6 +7,11 @@
extraConfig = {
push.autoSetupRemote = true;
init.defaultBranch = "main";
# Sign all commits using ssh key
commit.gpgsign = true;
gpg.format = "ssh";
user.signingkey = "/home/rhea/.ssh/etwas_sign_key";
};
};
}