18 lines
454 B
Nix
18 lines
454 B
Nix
let
|
|
nixos-version = "20.09";
|
|
|
|
hosts = import ./lib/hosts.nix { inherit nixos-version; };
|
|
|
|
define-host = hosts.host-config;
|
|
|
|
in {
|
|
network.description = "Seattle home network.";
|
|
|
|
limina = define-host "10.0.0.1" "limina";
|
|
lambda = define-host "10.0.0.11" "lambda";
|
|
nostromo = define-host "10.0.0.10" "nostromo";
|
|
plato = define-host "10.0.0.21" "plato";
|
|
spark = define-host "10.0.0.108" "spark";
|
|
zbox = define-host "10.0.0.110" "zbox";
|
|
}
|