21 lines
316 B
Nix
21 lines
316 B
Nix
|
inputs:
|
||
|
|
||
|
let
|
||
|
|
||
|
callLibs = file: import file ({
|
||
|
inherit lib inputs;
|
||
|
} // inputs);
|
||
|
|
||
|
lib = {
|
||
|
flake-helper = callLibs ./flake-helper.nix;
|
||
|
inherit ("flake-helper")
|
||
|
generateNixosSystem
|
||
|
mapToNixosConfigurations
|
||
|
generateColmenaHost
|
||
|
mapToColmenaHosts
|
||
|
buildHosts;
|
||
|
};
|
||
|
|
||
|
in
|
||
|
lib
|