From 50a59333e6f66b32994114d147eeda38dd7abc68 Mon Sep 17 00:00:00 2001 From: iofq Date: Sun, 21 May 2023 04:30:01 -0500 Subject: [PATCH] enable fw --- nixos/t14/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/t14/configuration.nix b/nixos/t14/configuration.nix index 5c831c7..d172546 100755 --- a/nixos/t14/configuration.nix +++ b/nixos/t14/configuration.nix @@ -5,7 +5,12 @@ ./hardware-configuration.nix ./nano.nix ]; - networking.hostName = host.hostName; + networking.hostName = host.hostName; + networking.firewall = { + enable = true; + allowedTCPPorts = []; + allowedUDPPorts = []; + } environment.systemPackages = with pkgs; [ cryptsetup ];