nixos/home/git/common.nix

15 lines
278 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{...}: {
programs.git = {
enable = true;
userName = "Evie Litherland-Smith";
delta = {
enable = true;
2023-04-26 16:12:22 +01:00
options.syntax-theme = "Catppuccin-macchiato";
};
extraConfig = {
2023-04-26 16:12:22 +01:00
pull.rebase = false;
init.defaultBranch = "main";
};
};
}