nixos/home/git/common.nix

16 lines
280 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";
};
};
}