diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-07-10 11:37:02 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-07-10 11:37:02 -0500 |
commit | 4508aa4e0ec94595fc6d4211d3d6ff04bc0f8e6d (patch) | |
tree | 39fb55a49ec47be783954f932251bc6a72f1a13b /modules/root/firewall.nix | |
parent | 8879ac8f270cdced4a70257b2b0523f025b597b3 (diff) | |
download | nixos-4508aa4e0ec94595fc6d4211d3d6ff04bc0f8e6d.tar.xz nixos-4508aa4e0ec94595fc6d4211d3d6ff04bc0f8e6d.zip |
Diffstat (limited to 'modules/root/firewall.nix')
-rw-r--r-- | modules/root/firewall.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/root/firewall.nix b/modules/root/firewall.nix new file mode 100644 index 0000000..e038cbe --- /dev/null +++ b/modules/root/firewall.nix @@ -0,0 +1,7 @@ +{ + networking.firewall = { + allowedTCPPorts = [ + 8080 + ]; + }; +} |