fix(clanLib): propagate clanLib into module apply

This commit is contained in:
Johannes Kirschbauer
2025-05-21 19:00:46 +02:00
parent 2510b2bb77
commit 8576016b32
10 changed files with 36 additions and 15 deletions

View File

@@ -3,12 +3,13 @@
## Add any logic to ./module.nix
{
lib,
clanLib,
...
}:
{
flakePartsModule = {
imports = [
./interface.nix
(lib.modules.importApply ./interface.nix { inherit clanLib; })
./module.nix
];
};