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

View File

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

View File

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