nixos-laptop/home/git/default.nix
Pim Kunis 92173b725c enable printing service
enable rebase pull git strategy
closes #22
2023-10-22 22:14:16 +02: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/**";
}];
};
};
}