From 95f03fc03889bec2ae2a6cb8fa2c6f5cacfa4c88 Mon Sep 17 00:00:00 2001 From: noe Date: Sun, 10 Mar 2024 20:33:14 -0400 Subject: [PATCH] ps2live: flip agg/meta ports --- nixos/stacks/ps2.live/agg_metagame.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/stacks/ps2.live/agg_metagame.nix b/nixos/stacks/ps2.live/agg_metagame.nix index ad54335..1bbe855 100644 --- a/nixos/stacks/ps2.live/agg_metagame.nix +++ b/nixos/stacks/ps2.live/agg_metagame.nix @@ -10,9 +10,9 @@ in { metagame = { image = image "metagame"; environment = { - PORT = port 0; + PORT = port 1; }; - ports = [ "${port 0}:${port 0}" ]; + ports = [ "${port 1}:${port 1}" ]; environmentFiles = [ config.sops.secrets.metagame.path ]; @@ -21,9 +21,9 @@ in { aggpop = { image = image "agg-population"; environment = { - PORT = port 1; + PORT = port 0; }; - ports = [ "${port 1}:${port 1}" ]; + ports = [ "${port 0}:${port 0}" ]; }; }; }