home: git: include local configuration properly
All checks were successful
ci/woodpecker/push/check Pipeline was successful

Using `includes` ensures that the local configuration is included at the
end of the configuration file.
This commit is contained in:
Bruno BELANYI 2025-02-21 16:22:00 +00:00
parent 8f5be69a4e
commit 1237ef4174

View file

@ -123,11 +123,6 @@ in
defaultBranch = "main";
};
# Local configuration, not-versioned
include = {
path = "config.local";
};
merge = {
conflictStyle = "zdiff3";
};
@ -167,8 +162,8 @@ in
};
};
# Multiple identities
includes = [
# Multiple identities
{
condition = "gitdir:~/git/EPITA/";
contents = {
@ -187,6 +182,10 @@ in
};
};
}
# Local configuration, not-versioned
{
path = "config.local";
}
];
ignores =