22 lines
308 B
Nix
22 lines
308 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
|
|
userName = "Wyatt J. Miller";
|
|
userEmail = "wyatt@wyattjmiller.com";
|
|
|
|
ignores = [
|
|
".DS_Store"
|
|
".direnv"
|
|
".idea"
|
|
];
|
|
|
|
extraConfig = {
|
|
init.defaultBranch = "master";
|
|
# push.autoSetupRemote = true;
|
|
};
|
|
};
|
|
}
|