clan-core/lib/flake-module.nix
Jörg Thalheim 1d496c6363
All checks were successful
checks-impure / test (pull_request) Successful in 5s
checks / test (pull_request) Successful in 1m20s
buildClan: also import clanCore module
2023-08-30 16:41:50 +02:00

13 lines
175 B
Nix

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