Files
clan-core/lib/flake-module.nix
2023-08-29 22:27:13 +02:00

15 lines
194 B
Nix

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