15 lines
278 B
Nix
15 lines
278 B
Nix
{...}: {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Evie Litherland-Smith";
|
|
delta = {
|
|
enable = true;
|
|
options.syntax-theme = "Catppuccin-macchiato";
|
|
};
|
|
extraConfig = {
|
|
pull.rebase = false;
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
}
|