nixos/services/mullvad.nix

8 lines
122 B
Nix
Raw Normal View History

2023-01-29 14:37:05 +01:00
{ config, lib, ... }:
with lib;
mkIf (elem "mullvad" config.machine.services) {
services.mullvad-vpn.enable = true;
}