16 lines
263 B
Nix
16 lines
263 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.git = {
|
|
enable = true;
|
|
delta.enable = true;
|
|
userEmail = "stefan@tague.at";
|
|
userName = "s-prechtl";
|
|
extraConfig = {
|
|
init.defaultBranch = "master";
|
|
push.autoSetupRemote = true;
|
|
};
|
|
};
|
|
}
|