13 lines
231 B
Nix
13 lines
231 B
Nix
|
let
|
||
|
nixos-version = "20.09";
|
||
|
|
||
|
hosts = import ./lib/hosts.nix { inherit nixos-version; };
|
||
|
|
||
|
define-host = hosts.host-config;
|
||
|
|
||
|
in {
|
||
|
network.description = "Informis network";
|
||
|
|
||
|
procul = define-host "172.86.179.18" "procul";
|
||
|
}
|