clan template: reduce autogenerate code to a minimum

This commit is contained in:
Jörg Thalheim
2023-08-29 15:00:03 +02:00
committed by Mic92
parent bf19e51c9f
commit a4e182debf
6 changed files with 41 additions and 59 deletions

View File

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