inventory/valuePrios: filter out unsupported freeformType

This commit is contained in:
Johannes Kirschbauer
2024-12-06 21:00:59 +01:00
parent 7c7f9d5c37
commit 6096e619ca

View File

@@ -183,7 +183,11 @@ in
inherit serviceConfigs;
inherit (clan-core) clanModules;
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;
meta = config.inventory.meta;