sign git commits with gpg

This commit is contained in:
2026-04-29 19:16:59 +02:00
parent 478d77d1bc
commit 027f6a111a
2 changed files with 6 additions and 1 deletions
-1
View File
@@ -11,7 +11,6 @@
name = "Lumpiasty"; name = "Lumpiasty";
email = "arek.dzski@gmail.com"; email = "arek.dzski@gmail.com";
}; };
signing.format = null; # New default
}; };
programs.vscode = { programs.vscode = {
+6
View File
@@ -15,6 +15,12 @@
programs.gpg.enable = true; programs.gpg.enable = true;
programs.git.signing = {
format = "openpgp";
key = "EA287B39E5F69945";
signByDefault = true;
};
programs.bash.enable = lib.mkDefault true; programs.bash.enable = lib.mkDefault true;
}; };
} }