nixos-laptop/home-manager/git/default.nix
Pim Kunis bffcb3c95c autoformat nix files
change formatter alejandra -> nixfmt
reformat whole project
2023-11-10 11:33:41 +01:00

18 lines
382 B
Nix

{
config = {
programs.git = {
enable = true;
userName = "Pim Kunis";
userEmail = "pim@kunis.nl";
extraConfig = {
push.autoSetupRemote = true;
commit.verbose = true;
pull.rebase = true;
};
includes = [{
path = "~/git/suecode/.gitconfig";
condition = "gitdir:~/git/suecode/**";
}];
};
};
}