18 lines
708 B
Nix
18 lines
708 B
Nix
{ config, lib, nodes, ... }:
|
|
{
|
|
networking.hosts = with nodes; {
|
|
# PCs
|
|
"${tower.config.deployment.targetHost}" = [ "tower" ];
|
|
"${hidden.config.deployment.targetHost}" = [ "hidden" ];
|
|
"${intuos.config.deployment.targetHost}" = [ "intuos" ];
|
|
"${jupiter.config.deployment.targetHost}" = [ "jupiter" ];
|
|
"${flight.config.deployment.targetHost}" = [ "flight" ];
|
|
|
|
# Servers
|
|
"${midas.config.deployment.targetHost}" = [ "midas" ];
|
|
"${kitty.config.deployment.targetHost}" = [ "kitty" ];
|
|
"${detritus.config.deployment.targetHost}" = [ "detritus" ];
|
|
"${elder.config.deployment.targetHost}" = [ "elder" ];
|
|
"${prophet.config.deployment.targetHost}" = [ "prophet" ];
|
|
};
|
|
}
|