inventory/valuePrios: filter out unsupported freeformType

This commit is contained in:
Johannes Kirschbauer
2024-12-06 21:00:59 +01:00
parent cc1eaf53ae
commit 4444c4a5c2

View File

@@ -183,7 +183,11 @@ in
inherit serviceConfigs; inherit serviceConfigs;
inherit (clan-core) clanModules; inherit (clan-core) clanModules;
inherit inventoryFile; inherit inventoryFile;
inventoryValuesPrios = (clan-core.lib.values.getPrios { options = inventory.options; }); inventoryValuesPrios =
# Temporary workaround
builtins.removeAttrs (clan-core.lib.values.getPrios { options = inventory.options; })
# tags are freeformType which is not supported yet.
[ "tags" ];
inventory = config.inventory; inventory = config.inventory;
meta = config.inventory.meta; meta = config.inventory.meta;