dotfiles/modules/home-manager/git.nix
2024-09-14 22:29:38 +02:00

14 lines
238 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;
};
};
}