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