summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPatrick Jackson <patrick@jackson.dev>2022-09-12 13:42:34 -0700
committerCole Helbling <cole.e.helbling@outlook.com>2022-10-11 12:37:49 -0700
commit4c6984346080dca83083bc7063df8fe820a025bc (patch)
tree560af7af4560ffe033371c034547637bd978dc70 /nixos
parente089620c566949d897b25874d15ec9b4dcfe70f2 (diff)
downloadnixpkgs-4c6984346080dca83083bc7063df8fe820a025bc.tar
nixpkgs-4c6984346080dca83083bc7063df8fe820a025bc.tar.gz
nixpkgs-4c6984346080dca83083bc7063df8fe820a025bc.tar.bz2
nixpkgs-4c6984346080dca83083bc7063df8fe820a025bc.tar.lz
nixpkgs-4c6984346080dca83083bc7063df8fe820a025bc.tar.xz
nixpkgs-4c6984346080dca83083bc7063df8fe820a025bc.tar.zst
nixpkgs-4c6984346080dca83083bc7063df8fe820a025bc.zip
nixos/mullvad-vpn: change dependency for the daemon to pkg mullvad
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/mullvad-vpn.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/mullvad-vpn.nix b/nixos/modules/services/networking/mullvad-vpn.nix
index ca60682b4b8..42d55056084 100644
--- a/nixos/modules/services/networking/mullvad-vpn.nix
+++ b/nixos/modules/services/networking/mullvad-vpn.nix
@@ -39,7 +39,7 @@ with lib;
       startLimitBurst = 5;
       startLimitIntervalSec = 20;
       serviceConfig = {
-        ExecStart = "${pkgs.mullvad-vpn}/bin/mullvad-daemon -v --disable-stdout-timestamps";
+        ExecStart = "${pkgs.mullvad}/bin/mullvad-daemon -v --disable-stdout-timestamps";
         Restart = "always";
         RestartSec = 1;
       };