nixos/services/mullvad.nix

10 lines
132 B
Nix
Raw Normal View History

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