Merge pull request #268324 from Janik-Haag/nixos-firewall-tool

nixos/firewall: install nixos-firewall-tool for iptables by default

authored by Atemu and committed by GitHub cfe01551 ea1083e8

+3
+2
nixos/doc/manual/release-notes/rl-2311.section.md
··· 428 428 429 429 - `zfs` was updated from 2.1.x to 2.2.0, [enabling newer kernel support and adding new features](https://github.com/openzfs/zfs/releases/tag/zfs-2.2.0). 430 430 431 + - The iptables firewall module now installs the `nixos-firewall-tool` which allows the user to easily temporarily open ports through the firewall. 432 + 431 433 - Elixir now defaults to version 432 434 [v1.15](https://elixir-lang.org/blog/2023/06/19/elixir-v1-15-0-released/). 433 435
+1
nixos/modules/services/networking/firewall-iptables.nix
··· 301 301 } 302 302 ]; 303 303 304 + environment.systemPackages = [ pkgs.nixos-firewall-tool ]; 304 305 networking.firewall.checkReversePath = mkIf (!kernelHasRPFilter) (mkDefault false); 305 306 306 307 systemd.services.firewall = {