Initial commit

This commit is contained in:
2024-11-25 08:49:13 -06:00
commit feeeba6221
4 changed files with 106 additions and 0 deletions

10
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";
};
}