mirror of
https://github.com/System-End/dotfiles.git
synced 2026-04-19 19:45:06 +00:00
- 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
16 lines
551 B
Text
Executable file
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;
|
|
}
|
|
}
|