mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
15 lines
246 B
Nix
15 lines
246 B
Nix
_: {
|
|
flake.homeModules.git = _: {
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
programs.gh = {
|
|
enable = true;
|
|
gitCredentialHelper.enable = true;
|
|
};
|
|
};
|
|
}
|