This commit is contained in:
John Lancaster
2024-12-07 14:41:23 -06:00
parent f303b9ec57
commit 679f8bfca0
5 changed files with 7 additions and 7 deletions

10
home-manager/git.nix Normal file
View File

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