Merge pull request 'inventory: fix internal indentifier' (#5576) from inventory-fixes-2 into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/5576
This commit is contained in:
hsjobeki
2025-10-19 14:25:45 +00:00
2 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@
grouped = lib.foldlAttrs (
acc: instanceName: instance:
let
inputName = if instance.module.input == null then "self" else instance.module.input;
inputName = if instance.module.input == null then "<clan-core>" else instance.module.input;
id = inputName + "-" + instance.module.name;
in
acc

View File

@@ -79,7 +79,7 @@ in
{
# Test that the module is mapped into the output
# We might change the attribute name in the future
expr = res.importedModulesEvaluated ? "self-simple-module";
expr = res.importedModulesEvaluated ? "<clan-core>-simple-module";
expected = true;
inherit res;
};
@@ -133,8 +133,8 @@ in
# We might change the attribute name in the future
expr = lib.mapAttrs (_n: v: builtins.length v) res.grouped;
expected = {
self-A = 2;
self-B = 1;
"<clan-core>-A" = 2;
"<clan-core>-B" = 1;
};
};