tests: add error prefix for json schema in checks

This commit is contained in:
Johannes Kirschbauer
2025-05-03 20:01:12 +02:00
parent 8a4fe1405a
commit d42d9ad943
9 changed files with 41 additions and 8 deletions

View File

@@ -10,6 +10,11 @@ let
in
{
options = {
_prefix = lib.mkOption {
type = types.listOf types.str;
internal = true;
default = [ ];
};
self = lib.mkOption {
type = types.raw;
default = self;

View File

@@ -44,6 +44,7 @@ let
buildInventory {
inherit inventory directory;
flakeInputs = config.self.inputs;
prefix = config._prefix ++ [ "inventoryClass" ];
}
);