From 713e5072987150cd3ab65d409955cb9f66b671c1 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Thu, 10 Jun 2021 12:14:30 +0200 Subject: [PATCH] fix(vpn): add workaround for mullvad issues --- system/vpn.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system/vpn.nix b/system/vpn.nix index 17ec6bb..3250356 100644 --- a/system/vpn.nix +++ b/system/vpn.nix @@ -2,7 +2,9 @@ { networking.wireguard.enable = true; - networking.iproute2.enable = true; + + # TODO fix for https://github.com/NixOS/nixpkgs/issues/113589 + networking.firewall.checkReversePath = "loose"; services.mullvad-vpn.enable = true; }