Files
nixos/modules/applications/git.nix
T
2026-06-07 11:53:55 +02:00

15 lines
250 B
Nix

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