nix-config/modules/mullvad.nix
2023-06-19 05:13:04 -04:00

13 lines
171 B
Nix

{ pkgs, ... }:
{
services.mullvad-vpn = {
enable = true;
enableExcludeWrapper = false;
};
environment.systemPackages = with pkgs; [
mullvad-vpn
];
}