Grapejuice with nvidia

Im using Nixos 24.05 with Nvidia 4060.
I have no problem installing/opening grapejuice, but I cant open actual app / run a game.
Investigating error logs i’ve got “DRM kernel driver ‘nvidia-drm’ in use. NVK requires nouveau.”

Nvidia related stuff:

services.xserver = {
            enable = true;
            videoDrivers = [ "nvidia" ]; 
        };

        hardware.opengl = {
            enable = true;
            driSupport = true;
            driSupport32Bit = true;
        };

        boot.blacklistedKernelModules = [ "nouveau" ];

        hardware.nvidia = {
            modesetting.enable = true;
            forceFullCompositionPipeline = true;
            powerManagement.enable = false;
            powerManagement.finegrained = false;
         
            open = true;

            nvidiaSettings = true;

            package = config.boot.kernelPackages.nvidiaPackages.stable;

For the record, roblox loading screen is appearing, but then it disappears and no other app opens.

Graphical settings of grapejuice:

Thank you for any information

It’s not an Nvidia issue. Grapejuice, Vinegar and all wine-based launchers have been blocked by Roblox a while ago.

Your best bet to play it on Linux is through Android emulation like Waydroid or the newly released Sober.

2 Likes

Interesting, didn’t know that is the thing. Thanks, mate :slight_smile:

1 Like