From b97ab5e226c13c0d48b8cbc40be5a694a82b226c Mon Sep 17 00:00:00 2001 From: leonvita91 Date: Sat, 20 Aug 2022 16:22:11 +0100 Subject: [PATCH] fix firewall syntax --- hosts/leon/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/leon/default.nix b/hosts/leon/default.nix index 594c0477..b764f8cd 100644 --- a/hosts/leon/default.nix +++ b/hosts/leon/default.nix @@ -41,10 +41,10 @@ in ]; }; -# networking.firewall = { + networking.firewall = { allowedTCPPorts = [ 5000 22 53 80 8080 777 ]; allowedUDPPorts = [ 5000 22 53 80 8080 777 ]; -# }; + }; system.stateVersion = "22.05";