Immersed: Difference between revisions

Klinger (talk | contribs)
m added to Category:Applications
drop 24.05 compat
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:


It is packaged as 'immersed-vr' in Nixpkgs, but in order to work on NixOS, you will need additional OpenGL libraries.  <syntaxhighlight lang="nixos">
It is packaged as 'immersed-vr' in Nixpkgs, but in order to work on NixOS, you will need additional OpenGL libraries.  <syntaxhighlight lang="nixos">
hardware.opengl = {
hardware.graphics = {
enable = true;
enable = true;
driSupport = true;
enable32Bit = true;
driSupport32Bit = true;
extraPackages = with pkgs; [ libva vaapiVdpau ];
extraPackages = with pkgs; [ libva vaapiVdpau libvdpau-va-gl ];
};
};