17 lines
315 B
Nix
17 lines
315 B
Nix
{...}: {
|
|
programs.delta = {
|
|
enable = true;
|
|
enableGitIntegration = true;
|
|
};
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user = {
|
|
email = "stefan@tague.at";
|
|
name = "s-prechtl";
|
|
};
|
|
init.defaultBranch = "master";
|
|
push.autoSetupRemote = true;
|
|
};
|
|
};
|
|
}
|