From b315d1502632a4ab894091947a7295f5b5a77c82 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Sat, 14 Dec 2019 23:19:12 +1300 Subject: [PATCH] porani: open firewall --- configs/porani/kodi.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/porani/kodi.nix b/configs/porani/kodi.nix index 9dfb671..8f28505 100644 --- a/configs/porani/kodi.nix +++ b/configs/porani/kodi.nix @@ -33,4 +33,9 @@ }; }; + # allow everybody in the net to access the wifi + networking.firewall = { + allowedTCPPorts = [ 8080 ]; + allowedUDPPorts = [ 8080 ]; + }; }