From e7691604f72c6a444e00fac946764502ebb4712f Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Sat, 15 Aug 2020 01:37:16 +0200 Subject: [PATCH] feat(vpn): fix mullvad --- system/vpn.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/vpn.nix b/system/vpn.nix index 037fe6e..35ccf43 100644 --- a/system/vpn.nix +++ b/system/vpn.nix @@ -1,5 +1,8 @@ { config, pkgs, ... }: { + # workaround for https://github.com/NixOS/nixpkgs/issues/91923 + networking.iproute2.enable = true; + services.mullvad-vpn.enable = true; }