20 lines
438 B
Nix
20 lines
438 B
Nix
|
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";
|
||
|
}
|