18 lines
382 B
Nix
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/**";
|
|
}];
|
|
};
|
|
};
|
|
}
|