clan-core/lib/flake-module.nix
Jörg Thalheim 7c21453b17
All checks were successful
checks-impure / test (pull_request) Successful in 2s
checks / test (pull_request) Successful in 2s
lib.buildClan: fix flake reference
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;
};
}