diff --git a/modules/homelab/services/qbittorrent/default.nix b/modules/homelab/services/qbittorrent/default.nix index 45bce60..c8de92d 100644 --- a/modules/homelab/services/qbittorrent/default.nix +++ b/modules/homelab/services/qbittorrent/default.nix @@ -59,14 +59,14 @@ in }; }; - networking.firewall.extraCommands = '' - iptables -N QBIT - iptables -A OUTPUT -m owner --uid-owner ${toString ids} -j QBIT - iptables -A QBIT -o ${vpn_inf} -j ACCEPT - iptables -A QBIT -p tcp -d 127.0.0.1 --dport ${toString cfg.port} -j ACCEPT - iptables -A QBIT -p tcp -o enp89s0 -d 10.0.0.0/8 --dport ${toString cfg.port} -j ACCEPT - iptables -A QBIT -j DROP - ''; +# networking.firewall.extraCommands = '' +# iptables -N QBIT +# iptables -A OUTPUT -m owner --uid-owner ${toString ids} -j QBIT +# iptables -A QBIT -o ${vpn_inf} -j ACCEPT +# iptables -A QBIT -p tcp -d 127.0.0.1 --dport ${toString cfg.port} -j ACCEPT +# iptables -A QBIT -p tcp -o enp89s0 -d 10.0.0.0/8 --dport ${toString cfg.port} -j ACCEPT +# iptables -A QBIT -j DROP +# '';