nixos-config/modules/system/devices/networking/hosts/default.nix
2025-06-09 18:24:51 -04:00

10 lines
378 B
Nix

{ config, lib, nodes, ... }:
{
networking.hosts = with nodes; {
"${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" ];
};
}