summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/helpers.nix
blob: 9b3539de63b11354dc5c070fc4c123358492584f (plain)
1
2
3
4
5
6
7
8
9
10
{ config, lib, ... }:
''
  # Helper command to manipulate both the IPv4 and IPv6 tables.
  ip46tables() {
    iptables -w "$@"
    ${lib.optionalString config.networking.enableIPv6 ''
      ip6tables -w "$@"
    ''}
  }
''