clan-core/lib/flake-module.nix

15 lines
195 B
Nix
Raw Normal View History

{ lib
, inputs
2023-09-02 16:24:34 +00:00
, self
, ...
}: {
imports = [
./jsonschema/flake-module.nix
];
flake.lib = import ./default.nix {
inherit lib;
2023-09-02 16:24:34 +00:00
inherit self;
inherit (inputs) nixpkgs;
};
}