CASCADE/network.nix
2022-09-23 22:24:58 -05:00

14 lines
198 B
Nix

with builtins;
let pkgs = import <nixpkgs> {};
network = {
inherit pkgs;
description = "cascade";
};
hosts = import (toString ./hosts);
in
hosts // {
inherit network;
}