nixos/home/git/common.nix

16 lines
280 B
Nix
Raw Normal View History

{ ... }:
{
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";
};
};
}