feat(nixos/ryu): add Mullvad packages to system environment
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s

This commit is contained in:
uttarayan21
2025-10-08 22:36:04 +05:30
parent aad0737311
commit 52c66f7cd7

View File

@@ -1,5 +1,9 @@
{...}: { {pkgs, ...}: {
services = { services = {
mullvad-vpn.enable = true; mullvad-vpn.enable = true;
}; };
environment.systemPackages = with pkgs; [
mullvad
mullvad-vpn
];
} }