From f668d95f74729267fe2c9af2d596d903827ee8f6 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 29 Apr 2025 02:24:03 +0100 Subject: [PATCH] Enable HTTP and HTTPS ports --- hosts/nixedo/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/nixedo/configuration.nix b/hosts/nixedo/configuration.nix index 60cf0efb..ebcbb655 100644 --- a/hosts/nixedo/configuration.nix +++ b/hosts/nixedo/configuration.nix @@ -38,4 +38,9 @@ powerManagement.powertop.enable = true; users.groups.media = { }; + + networking.firewall.allowedTCPPorts = [ + 80 + 443 + ]; }