From 9c7fb0b490d987648bc400604038382f33a2b99f Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 7 Jul 2023 10:47:55 -0400 Subject: [PATCH] mullvad: Remove gui package Not needed since the command line program is excellent. Makes things easier overall and no longer have to worry about GUI-specific bugs. --- home/hyprland.nix | 1 - modules/mullvad.nix | 6 ------ 2 files changed, 7 deletions(-) diff --git a/home/hyprland.nix b/home/hyprland.nix index ac685b4..49f3084 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -30,7 +30,6 @@ in exec-once = wpctl set-volume @DEFAULT_AUDIO_SINK@ 20% exec-once = sleep 0.5 && ironbar exec-once = fcitx5 - exec-once = mullvad-vpn exec-once = hyprctl dispatch workspace 5000000 exec-once = ${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1 diff --git a/modules/mullvad.nix b/modules/mullvad.nix index 1826fab..28c51b7 100644 --- a/modules/mullvad.nix +++ b/modules/mullvad.nix @@ -1,12 +1,6 @@ -{ pkgs, ... }: - { services.mullvad-vpn = { enable = true; enableExcludeWrapper = false; }; - - environment.systemPackages = with pkgs; [ - mullvad-vpn - ]; }