12 lines
222 B
Nix
12 lines
222 B
Nix
{ pkgs, lib, config, ... }: lib.mkIf config.bchmnn.vpn.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
openvpn3
|
|
mullvad-vpn
|
|
];
|
|
|
|
services.mullvad-vpn.enable = true;
|
|
|
|
services.tailscale.enable = true;
|
|
|
|
}
|