move all git options into one include

This commit is contained in:
jacekpoz 2024-02-17 15:57:57 +01:00
parent 1354026600
commit 64cf9c02dc
No known key found for this signature in database
GPG key ID: 94E812A8B12AAE3C

View file

@ -42,13 +42,11 @@ in {
}; };
includes = [ includes = [
{ {
contents = { core.editor = cfg.editor; }; contents = {
} core.editor = cfg.editor;
{ init.defaultBranch = cfg.defaultBranch;
contents = { init.defaultBranch = cfg.defaultBranch; }; push.autoSetupRemote = true;
} };
{
contents = { push.autoSetupRemote = true; };
} }
]; ];
}; };