22 lines
546 B
Nix
22 lines
546 B
Nix
let
|
|
nixos-version = "21.05";
|
|
|
|
hostlib = import ./lib/hosts.nix { inherit nixos-version; };
|
|
|
|
define-host = hostlib.host-config;
|
|
|
|
in {
|
|
network = {
|
|
description = "Seattle home network.";
|
|
enableRollback = true;
|
|
};
|
|
|
|
lambda = define-host "10.0.0.11" "lambda";
|
|
limina = define-host "10.0.0.1" "limina";
|
|
nostromo = define-host "10.0.0.10" "nostromo";
|
|
plato = define-host "10.0.0.21" "plato";
|
|
spark = define-host "10.0.0.108" "spark";
|
|
system3 = define-host "10.0.0.111" "system3";
|
|
zbox = define-host "10.0.0.110" "zbox";
|
|
}
|