mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
14 lines
300 B
Nix
14 lines
300 B
Nix
# see also ../nixos/mullvad.nix
|
|
{
|
|
...
|
|
}: {
|
|
programs.mullvad-vpn = {
|
|
enable = true;
|
|
# see https://github.com/mullvad/mullvadvpn-app/blob/main/desktop/packages/mullvad-vpn/src/main/gui-settings.ts for options
|
|
settings = {
|
|
autoConnect = true;
|
|
autoStart = true;
|
|
};
|
|
};
|
|
}
|