12 lines
172 B
Nix
12 lines
172 B
Nix
{
|
|
programs.git = {
|
|
enable = true;
|
|
|
|
extraConfig = {
|
|
push.autoSetupRemote = true;
|
|
init.defaultBranch = "main";
|
|
|
|
pull.rebase = true;
|
|
};
|
|
};
|
|
}
|