nix/module/common/Git.nix

13 lines
235 B
Nix
Raw Normal View History

{ ... }: {
programs.git = {
enable = true;
config = {
credential.helper = "store";
init.defaultBranch = "main";
pull.rebase = true;
push.autoSetupRemote = true;
rebase.autoStash = true;
};
};
}