From 94a198d7c9b098b80519f5f2f2c67ce665760f5c Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Sat, 14 Nov 2020 11:20:59 +0100 Subject: [PATCH] feat(vpn): enable wireguard kernel module --- system/vpn.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/vpn.nix b/system/vpn.nix index 35ccf43..17ec6bb 100644 --- a/system/vpn.nix +++ b/system/vpn.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: { - # workaround for https://github.com/NixOS/nixpkgs/issues/91923 + networking.wireguard.enable = true; networking.iproute2.enable = true; services.mullvad-vpn.enable = true;