Files
nixos/modules/applications/git.nix
T

15 lines
258 B
Nix

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