From 12d548ae2457348dfbac938757838b6759a81857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Fri, 5 Jun 2026 23:12:08 +0200 Subject: [PATCH] hyperhive: open firewall --- nixosConfigurations/muede-lpt2/hyperhive.nix | 5 ++++- nixosConfigurations/muede-pc2/hyperhive.nix | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/nixosConfigurations/muede-lpt2/hyperhive.nix b/nixosConfigurations/muede-lpt2/hyperhive.nix index 2447bb3..0111f55 100644 --- a/nixosConfigurations/muede-lpt2/hyperhive.nix +++ b/nixosConfigurations/muede-lpt2/hyperhive.nix @@ -13,7 +13,10 @@ serverName = "pr1ma.darkest.space"; }; forge.ci.enable = true; - gateway.localHostsEntry = true; + gateway = { + localHostsEntry = true; + openFirewall = true; + }; swarm.peers = { "umbra.darkest.space" = { }; }; diff --git a/nixosConfigurations/muede-pc2/hyperhive.nix b/nixosConfigurations/muede-pc2/hyperhive.nix index 719f622..9d48fd4 100644 --- a/nixosConfigurations/muede-pc2/hyperhive.nix +++ b/nixosConfigurations/muede-pc2/hyperhive.nix @@ -12,7 +12,10 @@ gui.enable = true; }; forge.ci.enable = true; - gateway.localHostsEntry = true; + gateway = { + localHostsEntry = true; + openFirewall = true; + }; swarm.peers = { "pr1ma.darkest.space" = { }; };