diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-13 21:05:56 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-13 21:05:56 -0400 |
commit | 4bf2677aaf40f9d937061a2851b2999fa6bb4ec5 (patch) | |
tree | 756e6e0b750ff5e70d4c1a4e4a8e1655ed084ab7 | |
parent | 29b83e8e0612cc807dd291e384bbf567a80bce26 (diff) |
enable firewall for oxo
-rw-r--r-- | machines/oxo/configuration.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/machines/oxo/configuration.nix b/machines/oxo/configuration.nix index 5dfc9e7..4bf16df 100644 --- a/machines/oxo/configuration.nix +++ b/machines/oxo/configuration.nix @@ -20,6 +20,11 @@ device = "/dev/sda"; }; + networking.firewall = { + enable = true; + allowedTCPPorts = [ 80 443 22 ]; + }; + programs.fuse.userAllowOther = true; home-manager = { extraSpecialArgs = { inherit inputs; }; |