Files
Olympus/modules/users/nathan/home-manager/features/git.nix
2026-04-23 18:38:55 -05:00

34 lines
811 B
Nix

{ ... }: {
flake.homeModules.nathan-terminal = { config, lib, ... }: {
config = {
programs.git = {
enable = true;
settings = {
init = {
defaultBranch = "master";
};
safe.directory = "/etc/nixos";
url = {
"ssh://gitea@gitea.esotericbytes.com/" = {
insteadOf = [
"server:"
];
};
};
user = {
name = "Nathan";
email = "nathanblunkall5@gmail.com";
};
};
};
};
};
}