nixos/firewall: make 'networking.firewall.package' example less confusing

pkgs.iptables-nftables-compat == pkgs.iptables (default) since cf9ac2b5.
This commit is contained in:
Pierre Bourdon 2022-02-08 10:31:09 +01:00
parent e7931c9dca
commit 833bcbc844
No known key found for this signature in database
GPG key ID: 6FB80DCD84DA0F1C

View file

@ -326,7 +326,7 @@ in
type = types.package; type = types.package;
default = pkgs.iptables; default = pkgs.iptables;
defaultText = literalExpression "pkgs.iptables"; defaultText = literalExpression "pkgs.iptables";
example = literalExpression "pkgs.iptables-nftables-compat"; example = literalExpression "pkgs.iptables-legacy";
description = description =
'' ''
The iptables package to use for running the firewall service." The iptables package to use for running the firewall service."