nixos/home/env/git/default.nix

18 lines
243 B
Nix

{ ... }:
{
imports = [
../ssh.nix
../shell
];
programs.git = {
enable = true;
userName = "Evie Litherland-Smith";
delta.enable = true;
extraConfig = {
pull = {
rebase = false;
};
};
};
}