clan-core/lib/flake-module.nix

13 lines
175 B
Nix
Raw Normal View History

{ lib
, inputs
, ...
}: {
imports = [
./jsonschema/flake-module.nix
];
flake.lib = import ./default.nix {
inherit lib;
2023-08-30 14:41:10 +00:00
inherit (inputs) nixpkgs clan;
};
}