From 45d01afb40aa36e26834ac95add831f12f059756 Mon Sep 17 00:00:00 2001 From: spaceoden <26421479+spaceoden@users.noreply.github.com> Date: Mon, 16 Feb 2026 19:18:00 -0800 Subject: [PATCH] nixos/mullvad-vpn: include pkgs prefix in package example The value for the package choice is expected to be a nix package, so the example should exactly reflect that. --- nixos/modules/services/networking/mullvad-vpn.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/mullvad-vpn.nix b/nixos/modules/services/networking/mullvad-vpn.nix index 8ccec7997f82..2ed4d7f1415c 100644 --- a/nixos/modules/services/networking/mullvad-vpn.nix +++ b/nixos/modules/services/networking/mullvad-vpn.nix @@ -39,7 +39,7 @@ with lib; }; package = mkPackageOption pkgs "mullvad" { - example = "mullvad-vpn"; + example = "pkgs.mullvad-vpn"; extraDescription = '' `pkgs.mullvad` only provides the CLI tool, `pkgs.mullvad-vpn` provides both the CLI and the GUI. '';