13 lines
203 B
Nix
13 lines
203 B
Nix
|
{
|
||
|
config = {
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Pim Kunis";
|
||
|
userEmail = "pim@kunis.nl";
|
||
|
extraConfig = {
|
||
|
push.autoSetupRemote = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|