Files
nixos/modules/applications/git.nix
T

15 lines
246 B
Nix

_: {
flake.homeModules.git = _: {
programs.git = {
enable = true;
settings = {
init.defaultBranch = "main";
};
};
programs.gh = {
enable = true;
gitCredentialHelper.enable = true;
};
};
}