144 current 2025-10-09 00:31:21 25.05.20251006.20c4598 6.12.50 *

This commit is contained in:
2025-10-09 00:38:56 -05:00
parent d44c8983d6
commit 67d587518a
2 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
# flake for blakes nixos config # flake for blakes nixos config
# define new devices in outputs # define new devices in outputs
# generation: 143 current 2025-10-09 00:24:29 25.05.20251006.20c4598 6.12.50 * # generation: 144 current 2025-10-09 00:31:21 25.05.20251006.20c4598 6.12.50 *
{ {
description = "blakes nix config"; description = "blakes nix config";
inputs = { inputs = {

View File

@@ -59,18 +59,18 @@ in
}; };
}; };
# networking.firewall.extraCommands = '' networking.firewall.extraCommands = ''
# iptables -F QBIT iptables -F QBIT
# iptables -X QBIT iptables -X QBIT
# iptables -N QBIT iptables -N QBIT
# iptables -A OUTPUT -m owner --uid-owner ${toString ids} -j QBIT iptables -A OUTPUT -m owner --uid-owner ${toString ids} -j QBIT
# iptables -A QBIT -o ${vpn_inf} -j ACCEPT iptables -A QBIT -o ${vpn_inf} -j ACCEPT
# iptables -A QBIT -p udp --dport 53 -o ${vpn_inf} -j ACCEPT iptables -A QBIT -p udp --dport 53 -o ${vpn_inf} -j ACCEPT
# iptables -A QBIT -p tcp --dport 53 -o ${vpn_inf} -j ACCEPT iptables -A QBIT -p tcp --dport 53 -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 -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 -p tcp -o enp89s0 -d 10.0.0.0/8 --dport ${toString cfg.port} -j ACCEPT
# iptables -A QBIT -j DROP iptables -A QBIT -j DROP
# ''; '';