Immersed: Difference between revisions
MikiVanousek (talk | contribs) Mention all the information I needed to get up and running |
drop 24.05 compat |
||
| (3 intermediate revisions by 3 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. | hardware.graphics = { | ||
enable = true; | enable = true; | ||
enable32Bit = true; | |||
extraPackages = with pkgs; [ libva vaapiVdpau ]; | |||
extraPackages = with pkgs; [ libva vaapiVdpau | |||
}; | }; | ||
| Line 12: | Line 11: | ||
As of April 2024, the support for Wayland is experimental. The first version to support it is in this [https://github.com/NixOS/nixpkgs/pull/299955 pull request]. On Gnome, you might also have to turn on accessibility zoom (if you set it to 100% it does not change the appearance) to see your mouse cursor. | As of April 2024, the support for Wayland is experimental. The first version to support it is in this [https://github.com/NixOS/nixpkgs/pull/299955 pull request]. On Gnome, you might also have to turn on accessibility zoom (if you set it to 100% it does not change the appearance) to see your mouse cursor. | ||
[[Category:Applications]] | |||