From 9a7ab66b3b8bc844ef0cde32b69be8d2dd5f3749 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Tue, 1 Apr 2025 14:52:13 +0200 Subject: [PATCH] chore(buildClan): set clanInternals.modules to clanInternals.clanModules --- lib/build-clan/module.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/build-clan/module.nix b/lib/build-clan/module.nix index 8c689cc20..29eafe838 100644 --- a/lib/build-clan/module.nix +++ b/lib/build-clan/module.nix @@ -205,7 +205,11 @@ in inherit lib inventory; flake = config.self; }; + # TODO: unify this interface + # We should have only clan.modules. (consistent with clan.templates) inherit (clan-core) clanModules clanLib; + modules = clan-core.modules; + inherit inventoryFile; inventoryValuesPrios = # Temporary workaround @@ -213,7 +217,6 @@ in # tags are freeformType which is not supported yet. [ "tags" ]; - modules = config.modules; templates = config.templates; inventory = config.inventory; meta = config.inventory.meta;