From 98cd87c47dba8bb11c14a2820bbf1ca198ac5734 Mon Sep 17 00:00:00 2001 From: DuN0z Date: Tue, 14 Oct 2025 07:37:44 +0200 Subject: [PATCH] Fix: add firewall --- hosts/terre-neuvas/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/terre-neuvas/configuration.nix b/hosts/terre-neuvas/configuration.nix index 92e1453..2774051 100644 --- a/hosts/terre-neuvas/configuration.nix +++ b/hosts/terre-neuvas/configuration.nix @@ -52,6 +52,7 @@ in { networking = { useNetworkd = true; firewall.allowedTCPPorts = [22 80 5900 5901 5902]; + firewall.enable = true ; interfaces.eno1.useDHCP = false; interfaces.br0 = { useDHCP = false; @@ -85,5 +86,7 @@ in { networkConfig.Bridge = "br0"; }; }; + + system.stateVersion = "25.05"; # Did you read the comment? }