From 52c66f7cd7d1c5b890cb300bcac4dee0b384960e Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Wed, 08 Oct 2025 17:06:04 +0000 Subject: [PATCH] feat(nixos/ryu): add Mullvad packages to system environment --- nixos/ryu/services/mullvad.nix | 6 +++++- 1 file(s) changed, 5 insertion(s)(+), 1 deletion(s)(-) diff --git a/nixos/ryu/services/mullvad.nix b/nixos/ryu/services/mullvad.nix --- a/nixos/ryu/services/mullvad.nix +++ b/nixos/ryu/services/mullvad.nix @@ -1,5 +1,9 @@ -{...}: { +{pkgs, ...}: { services = { mullvad-vpn.enable = true; }; + environment.systemPackages = with pkgs; [ + mullvad + mullvad-vpn + ]; } -- tangled.sh