diff --git a/modules/nixos/networking/vpn.nix b/modules/nixos/networking/vpn.nix index 0b4760e7..51e73f2b 100644 --- a/modules/nixos/networking/vpn.nix +++ b/modules/nixos/networking/vpn.nix @@ -1,14 +1,12 @@ -{ pkgs, config, ... }: +{ config, ... }: { services.mullvad-vpn = { inherit (config.garden.profiles.graphical) enable; - # this is not the default despite what you might think. this is the gui - # version of the package - package = pkgs.mullvad-vpn; - # "Might have minor security impact, so consider disabling if you do not use the feature" # well i don't use it so. sure lets do that enableExcludeWrapper = false; + + gui.enable = true; }; }