10 lines
276 B
Nix
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";
|
|
};
|
|
} |