283 current 2025-01-18 14:07:43 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-19 13:34:05 -05:00
parent d03c5a6b3d
commit 8c1923fde7
3 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
config,
pkgs,
...
}: {
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
userName = "JakeGinesin";
userEmail = "jakeginesin@gmail.com";
# extraConfig = {
# commit.gpgsign = true;
# gpg.format = "ssh";
# gpg.ssh.allowedSignersFile = "/home/synchronous/.ssh/allowed_signers";
# user.signingkey = "/home/synchronous/.ssh/github_synchronous_signing.pub";
# rebase.updateRefs = true;
# };
};
}