this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(wireguard): set rpfilter to loose

Reference: https://nixos.wiki/wiki/WireGuard

Performs a reverse path filter test on a packet. If a reply to the
packet would not be sent via the same interface that the packet arrived
on, it is refused.

If using asymmetric routing or other complicated routing, set this
option to loose mode or disable it and setup your own counter-measures.

This option can be either true (or “strict”), “loose” (only drop the
packet if the source address is not reachable via any interface) or
false.

+3
+3
configuration.nix
··· 17 17 networkmanager = { 18 18 enable = true; 19 19 }; 20 + firewall = { 21 + checkReversePath = "loose"; 22 + }; 20 23 }; 21 24 22 25 systemd = {