8 lines
185 B
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
|
|
];
|
|
}
|