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 = [
{
contents = { core.editor = cfg.editor; };
}
{
contents = { init.defaultBranch = cfg.defaultBranch; };
}
{
contents = { push.autoSetupRemote = true; };
contents = {
core.editor = cfg.editor;
init.defaultBranch = cfg.defaultBranch;
push.autoSetupRemote = true;
};
}
];
};