nixos/home/git/default.nix
2024-03-11 19:36:05 +01:00

13 lines
275 B
Nix

{
programs.git = {
enable = true;
userName = "Hadi";
userEmail = "112569860+anotherhadi@users.noreply.github.com";
extraConfig = {
init.defaultBranch = "main";
# Automatically track remote branch
push.autoSetupRemote = true;
};
};
}