2022-09-24 03:24:58 +00:00
|
|
|
with builtins;
|
2022-09-26 13:27:59 +00:00
|
|
|
with import ./functions;
|
2022-09-24 03:24:58 +00:00
|
|
|
|
2022-09-27 16:16:53 +00:00
|
|
|
let pkgs = (import "${import ./nixpkgs-path.nix}" {});
|
2022-09-24 03:24:58 +00:00
|
|
|
network = {
|
|
|
|
inherit pkgs;
|
|
|
|
description = "cascade";
|
|
|
|
};
|
2022-09-26 13:27:59 +00:00
|
|
|
hosts = import (toString ./hosts) {};
|
2022-09-24 03:24:58 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
hosts // {
|
|
|
|
inherit network;
|
|
|
|
}
|