15 lines
249 B
Nix
15 lines
249 B
Nix
with builtins;
|
|
with import ./functions;
|
|
|
|
let pkgs = (import "${import ./nixpkgs-path.nix}" {});
|
|
network = {
|
|
inherit pkgs;
|
|
description = "cascade";
|
|
};
|
|
hosts = import (toString ./hosts) {};
|
|
in
|
|
|
|
hosts // {
|
|
inherit network;
|
|
}
|