mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
17 lines
343 B
Nix
17 lines
343 B
Nix
{
|
|
enable = true;
|
|
userName = "Vinzenz Schroeter";
|
|
userEmail = "vinzenz.f.s@gmail.com";
|
|
|
|
aliases = {
|
|
prettylog = "log --pretty=oneline --graph";
|
|
spring-clean = "!git branch --merged | xargs -n 1 -r git branch -d";
|
|
};
|
|
|
|
extraConfig = {
|
|
pull.ff = "only";
|
|
merge.tool = "kdiff3";
|
|
push.autoSetupRemote = "true";
|
|
};
|
|
}
|