clan-core/lib/flake-module.nix

18 lines
244 B
Nix

{
lib,
inputs,
self,
...
}:
{
imports = [
./jsonschema/flake-module.nix
./inventory/flake-module.nix
];
flake.lib = import ./default.nix {
inherit lib inputs;
inherit (inputs) nixpkgs;
clan-core = self;
};
}