13 lines
192 B
Nix
13 lines
192 B
Nix
{
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
extraConfig.init.defaultBranch = "main";
|
|
};
|
|
|
|
gh = {
|
|
enable = true;
|
|
gitCredentialHelper.enable = true;
|
|
};
|
|
};
|
|
}
|