CASCADE/network.nix

15 lines
249 B
Nix
Raw Normal View History

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