17 lines
649 B
Nix
17 lines
649 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" ];
|
|
"${prophet.config.deployment.targetHost}" = [ "prophet" ];
|
|
};
|
|
}
|