1
0
Fork 0
puter/profiles/piracy/mullvad.nix

18 lines
200 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.profiles.gaming;
in
{
config = lib.mkIf cfg.enable {
services.mullvad-vpn = {
enable = true;
package = pkgs.mullvad-vpn;
};
};
}