dotfiles/modules/home-manager/git.nix
2024-09-15 11:57:16 +02:00

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;
};
};
}