diff --git a/config/nixos/common/server.nix b/config/nixos/common/server.nix index 9814794..cf03f9e 100644 --- a/config/nixos/common/server.nix +++ b/config/nixos/common/server.nix @@ -30,17 +30,17 @@ allowedUDPPorts = [ 51820 # WireGuard ]; - }; - # Allow local network access only - interfaces = { - "docker0" = { - allowedTCPPorts = [ - 7788 # Sabnzbd - 8085 # Qbittorrent - 81 # Nginx Proxy Manager - 3030 # Gitea - ]; + # Allow local network access only + interfaces = { + "docker0" = { + allowedTCPPorts = [ + 7788 # Sabnzbd + 8085 # Qbittorrent + 81 # Nginx Proxy Manager + 3030 # Gitea + ]; + }; }; }; }