diff --git a/pkgs/games/BeatSaberModManager/default.nix b/pkgs/games/BeatSaberModManager/default.nix index 840cdb59ec9..da277552b42 100644 --- a/pkgs/games/BeatSaberModManager/default.nix +++ b/pkgs/games/BeatSaberModManager/default.nix @@ -13,6 +13,8 @@ libICE, libSM, fontconfig, + + xdg-utils, }: buildDotnetModule rec { @@ -47,6 +49,11 @@ buildDotnetModule rec { fontconfig ]; + # Required for OneClick + makeWrapperArgs = [ + ''--prefix PATH : "${lib.makeBinPath [ xdg-utils ]}"'' + ]; + meta = with lib; { description = "Yet another mod installer for Beat Saber, heavily inspired by ModAssistant"; homepage = "https://github.com/affederaffe/BeatSaberModManager";