Fix: Correct path for sshKey used for signing commits.

This commit is contained in:
Joey Hafner 2025-02-02 02:22:21 -08:00
parent a9290d0189
commit c84b08c47c
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55

View File

@ -286,7 +286,7 @@ in {
userEmail = "${usr.${sys.username}.email}";
extraConfig = {
init.defaultBranch = "main";
core.sshCommand = "ssh -i /home/${sys.username}/.ssh/${sys.sshKey}";
core.sshCommand = "ssh -i ${sys.sshKey}";
gpg.format = "openpgp";
commit.gpgsign = true;
tag.gpgsign = true;