9 lines
218 B
Nix
9 lines
218 B
Nix
{ ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig.credential.helper = "store --file ~/.git-credentials";
|
|
userName = "John Lancaster";
|
|
userEmail = "32917998+jsl12@users.noreply.github.com";
|
|
};
|
|
} |