13 lines
235 B
Nix
13 lines
235 B
Nix
{ ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
config = {
|
|
credential.helper = "store";
|
|
init.defaultBranch = "main";
|
|
pull.rebase = true;
|
|
push.autoSetupRemote = true;
|
|
rebase.autoStash = true;
|
|
};
|
|
};
|
|
}
|