feat(buildInventory): move instance resolution into buildInventory

Such that buildClan doesn't have to compose the results
buildInventory should be more self contained. But it is NOT meant a
public API! use buildClan argument 'inventory' instead
This commit is contained in:
Johannes Kirschbauer
2025-04-09 17:28:17 +02:00
parent 5705200406
commit 9f159084cd
4 changed files with 31 additions and 13 deletions

View File

@@ -9,6 +9,9 @@ in
directory = mkOption {
type = types.path;
};
distributedServices = mkOption {
type = types.raw;
};
inventory = mkOption {
type = types.raw;
};