nixfiles/profiles/nixos/mullvad.nix

8 lines
185 B
Nix

{config, ...}: {
services.mullvad-vpn.enable = true;
networking.resolvconf.enable = true;
systemd.services.mullvad-daemon.path = [
config.networking.resolvconf.package
];
}