Nvidia: Difference between revisions

From NixOS Wiki
imported>Vodkabot2
mNo edit summary
imported>Vodkabot2
mNo edit summary
Line 35: Line 35:
   hardware.nvidiaOptimus.disable = true;
   hardware.nvidiaOptimus.disable = true;
   # install nvidia drivers in addition to intel one
   # install nvidia drivers in addition to intel one
   hardware.opengl.extraPackages = [ linuxPackages.nvidia_x11.out ];
   hardware.opengl.extraPackages = [ pkgs.linuxPackages.nvidia_x11.out ];
   hardware.opengl.extraPackages32 = [ pkgs_i686.linuxPackages.nvidia_x11.out ];
   hardware.opengl.extraPackages32 = [ pkgs_i686.linuxPackages.nvidia_x11.out ];
}
}

Revision as of 22:17, 15 July 2018

Card type

  • MXM / output-providing card (shows as VGA Controller in lspci), i.e. graphics card in desktop computer or in some laptops
  • muxless/non-MXM Optimus cards have no display outputs and show as 3D Controller in lspci output, seen in most modern consumer laptops

Non-optimus mode

You need MXM card. Follow NVIDIA Graphics Cards section in official manual.

In case of laptop you may also need to use BIOS option to select which card to use for internal display.

Optimus

There are currently two solutions available under NixOS:

Bumblebee

Unofficial solution, but is easy to set.

Use

hardware.bumblebee.enable = true;

option.


  • Pros: out of box experience, just start the game via primusrun or optirun wrapper
  • Cons: some performance penalty, no Vulkan support, things like CUDA and OpenCL are problematic to configure

Nvidia PRIME

Official solution by nvidia, but needs some preparing. Also you need muxless card

1. Configure NixOS to allow Intel and Nvidia X.Org drivers coexist together (only needed because NixOS forces LD_LIBRARY_PATH variable propagation), and also to disable nvidia card by default.

/etc/nixos/configuration.nix
{
  # disable card with bbswitch by default
  hardware.nvidiaOptimus.disable = true;
  # install nvidia drivers in addition to intel one
  hardware.opengl.extraPackages = [ pkgs.linuxPackages.nvidia_x11.out ];
  hardware.opengl.extraPackages32 = [ pkgs_i686.linuxPackages.nvidia_x11.out ];
}

2. Use primerun script for out of box experience.

Like with Bumblebee, start the game via primerun.sh.

  • Cons: there are still some rough edges noted on the top of script, but otherwise it works fine for me