From ec05bb09fbad609fc8cd3b356f3a031239216ec1 Mon Sep 17 00:00:00 2001 From: isabel Date: Fri, 31 Jul 2026 14:48:50 +0100 Subject: [PATCH] nixos/networking/vpn: use defaults; enable gui --- modules/nixos/networking/vpn.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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; }; } -- 2.51.2