From 1cb4864c7c3842df0d5866f793ce75699421da29 Mon Sep 17 00:00:00 2001 From: jaina heartles Date: Wed, 7 Aug 2024 20:04:43 -0700 Subject: [PATCH] open nebula firewall --- nebula.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nebula.nix b/nebula.nix index fc9b27c..06d584e 100644 --- a/nebula.nix +++ b/nebula.nix @@ -8,6 +8,17 @@ cert = "/var/lib/nebula/node.crt"; key = "/var/lib/nebula/node.key"; ca = "/var/lib/nebula/ca.crt"; + + firewall.inbound = [{ + host = "any"; + port = "any"; + proto = "any"; + }]; + firewall.outbound = [{ + host = "any"; + port = "any"; + proto = "any"; + }]; }; networking.firewall.allowedTCPPorts = [ 4242 ];