nix-config/modules/mullvad.nix

13 lines
171 B
Nix
Raw Normal View History

2023-06-19 11:13:04 +02:00
{ pkgs, ... }:
{
services.mullvad-vpn = {
enable = true;
enableExcludeWrapper = false;
};
environment.systemPackages = with pkgs; [
mullvad-vpn
];
}