1
0
Fork 0
nixos/services/mullvad.nix

10 lines
132 B
Nix

{
config,
lib,
...
}:
with lib;
mkIf (elem "mullvad" config.machine.services) {
services.mullvad-vpn.enable = true;
}