Files
nix-docker/git.nix
John Lancaster aab33e4786 git example
2024-11-17 20:53:32 +00:00

10 lines
276 B
Nix

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