added git stuff

This commit is contained in:
John Lancaster
2025-05-26 17:08:09 +00:00
parent 7ecb6a67fb
commit 732ef13b69
3 changed files with 136 additions and 4 deletions

10
git.nix Normal file
View File

@@ -0,0 +1,10 @@
{ ... }:
{
home.stateVersion = "24.11";
programs.git = {
enable = true;
extraConfig.credential.helper = "store --file ~/.git-credentials";
userName = "John Lancaster";
userEmail = "32917998+jsl12@users.noreply.github.com";
};
}