2021-03-08 09:29:09 -08:00
|
|
|
let
|
2021-06-08 14:22:37 -07:00
|
|
|
nixos-version = "21.05";
|
2021-03-08 09:29:09 -08:00
|
|
|
|
2021-04-10 21:45:38 -07:00
|
|
|
hosts = import ./lib/hosts.nix { inherit nixos-version; };
|
2021-04-18 23:24:01 -07:00
|
|
|
|
|
|
|
define-host = hosts.host-config;
|
2021-03-08 09:29:09 -08:00
|
|
|
|
|
|
|
in {
|
2021-04-29 21:39:21 -07:00
|
|
|
network = {
|
|
|
|
description = "Seattle home network.";
|
|
|
|
enableRollback = true;
|
|
|
|
};
|
2021-03-08 09:29:09 -08:00
|
|
|
|
2021-07-25 22:46:07 -07:00
|
|
|
lambda = define-host "10.0.0.11" "lambda";
|
2021-08-06 16:25:01 -07:00
|
|
|
limina = define-host "10.0.0.1" "limina";
|
2021-04-21 10:34:46 -07:00
|
|
|
nostromo = define-host "10.0.0.10" "nostromo";
|
2021-04-18 23:24:01 -07:00
|
|
|
plato = define-host "10.0.0.21" "plato";
|
|
|
|
spark = define-host "10.0.0.108" "spark";
|
2021-08-06 16:25:01 -07:00
|
|
|
system3 = define-host "10.0.0.111" "system3";
|
2021-04-18 23:24:01 -07:00
|
|
|
zbox = define-host "10.0.0.110" "zbox";
|
2021-03-08 09:29:09 -08:00
|
|
|
}
|