1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-04-08 04:51:12 +00:00

enable official mullvad client

This commit is contained in:
Noah Masur 2022-06-04 11:24:40 -04:00
parent 0fd3956bda
commit f4d5df0071
2 changed files with 7 additions and 0 deletions
hosts/desktop
modules/services

@ -20,5 +20,6 @@ nixpkgs.lib.nixosSystem {
../common.nix ../common.nix
../../modules/services/keybase.nix ../../modules/services/keybase.nix
../../modules/services/gnupg.nix ../../modules/services/gnupg.nix
../../modules/services/mullvad.nix
]; ];
} }

@ -0,0 +1,6 @@
{ pkgs, ... }: {
services.mullvad-vpn.enable = true;
environment.systemPackages = [ pkgs.mullvad-vpn ];
}