clan-core/lib/flake-module.nix
Jörg Thalheim 72768573db
All checks were successful
checks-impure / test (pull_request) Successful in 3s
checks / test (pull_request) Successful in 3s
drop non-existent clan modules
2023-08-29 22:30:33 +02:00

13 lines
170 B
Nix

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