Files
clan-core/lib/flake-module.nix
2024-03-17 19:48:49 +01:00

15 lines
198 B
Nix

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