nixos-laptop/home-manager/git/default.nix

21 lines
404 B
Nix
Raw Normal View History

2023-10-08 14:57:57 +00:00
{
config = {
programs.git = {
enable = true;
userName = "Pim Kunis";
userEmail = "pim@kunis.nl";
extraConfig = {
push.autoSetupRemote = true;
commit.verbose = true;
pull.rebase = true;
2023-10-08 14:57:57 +00:00
};
2023-11-05 17:49:51 +00:00
includes = [
{
path = "~/git/suecode/.gitconfig";
condition = "gitdir:~/git/suecode/**";
}
];
2023-10-08 14:57:57 +00:00
};
};
}