1
0
Fork 0
nixfiles/lib/default.nix

22 lines
382 B
Nix
Raw Normal View History

2023-12-10 18:27:55 +01:00
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;
clerie-monitoring-ids = callLibs ./clerie-monitoring-ids.nix;
2023-12-10 18:27:55 +01:00
};
in
lib