Files
nixos/modules/home-manager/git.nix
T
2026-04-20 11:27:43 +02:00

17 lines
216 B
Nix

{
config,
pkgs,
...
}: {
programs.git = {
enable = true;
settings = {
init.defaultBranch = "main";
};
};
programs.gh = {
enable = true;
gitCredentialHelper.enable = true;
};
}