1
0
Fork 0

Add mullvad service wrapper.

This commit is contained in:
Kevin Baensch 2023-01-29 14:37:05 +01:00
parent 775bc3a9f4
commit 460da50ab8
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 7 additions and 0 deletions

7
services/mullvad.nix Normal file
View File

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