flake-parts: fix clan-core reference

This commit is contained in:
Jörg Thalheim
2024-04-04 13:30:42 +02:00
parent 5ffae2070d
commit 28e8af60cf
3 changed files with 6 additions and 6 deletions

View File

@@ -1,16 +1,15 @@
clan-core:
{
config,
lib,
flake-parts-lib,
inputs,
self,
...
}:
let
inherit (lib) mkOption types;
buildClan = import ../lib/build-clan {
inherit lib;
clan-core = self;
inherit lib clan-core;
inherit (inputs) nixpkgs;
};
@@ -70,4 +69,5 @@ in
;
};
};
_file = __curPos.file;
}