nixfiles/profiles/nixos/mullvad.nix

8 lines
185 B
Nix
Raw Normal View History

2024-08-19 13:51:48 +01:00
{config, ...}: {
services.mullvad-vpn.enable = true;
networking.resolvconf.enable = true;
systemd.services.mullvad-daemon.path = [
config.networking.resolvconf.package
];
}