dotfiles/mullvad_tailscale.conf
End bbf099c078
Add AGS bar, wezterm, and misc configs; exclude KDE private keys
- Add full AGS bar (GTK4/Astal/TypeScript) with all modules
- Add wezterm config
- Add niri config, starship, btop, xdg-portal, fish colors
- Add gitignores for browser caches, JetBrains runtime, AGS node_modules
- Exclude kdeconnect private/certificate pem files
2026-04-12 14:45:39 -07:00

16 lines
551 B
Text
Executable file

# Mullvad + Tailscale coexistence
# Apply with:
# sudo nft -f /home/end/Github/dotfiles/mullvad_tailscale.conf
# sudo ip route add 100.64.0.0/10 dev tailscale0 table main
# sudo systemctl restart tailscaled
table inet mullvad_tailscale {
chain output {
type route hook output priority 0; policy accept;
ip daddr 100.64.0.0/10 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;
}
chain input {
type filter hook input priority -100; policy accept;
ip saddr 100.64.0.0/10 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;
}
}