I just setup my first NixOS system!
I have a very slim KDE Plasma setup with MullvadVPN, other packages should be flatpaks I think, though not sure.
It seems there are multiple ways to install MullvadVPN, and the one I used results in a very outdated package (2024.8
instead of 2025.3
)
This is my config
services.mullvad-vpn.enable = true ;
services.mullvad-vpn.package = pkgs.mullvad-vpn ;
...
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
wget
curl
aria2
git
nano
fish
htop
btop
powertop
usbguard
usbguard-notifier
cosmic-term
kate
];
The package for mullvad is on 2025.3 like upstream, but one of these config lines pulls in the outdated one.
I already tried removing the second like that installs the GUI app mullvad-vpn
as a service, that didnt change anything yet.
Where would I fix this so that these lines work again?