Files
clan-core/lib/flake-module.nix
2024-06-24 15:47:25 +02:00

15 lines
205 B
Nix

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