nixos-config/nixops/russell.nix

20 lines
438 B
Nix
Raw Normal View History

let
common = import ./common.nix;
domain = "rus.selby.ca";
site = "russell";
russell-host-config = ip: hostname: profile:
common.host-config ip {
hostname = hostname;
profile = profile;
domain = domain;
site = site;
};
in {
network.description = "Russell home network.";
clunk = russell-host-config "10.0.0.1" "clunk" "server";
plato = russell-host-config "10.0.0.102" "plato" "server";
}