Immersed: Difference between revisions

From NixOS Wiki
Mention all the information I needed to get up and running
 
Klinger (talk | contribs)
m added to Category:Applications
Line 12: Line 12:


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]]

Revision as of 16:01, 19 April 2024

Immersed is a virtual and augmented reality application for work and productivity.

It is packaged as 'immersed-vr' in Nixpkgs, but in order to work on NixOS, you will need additional OpenGL libraries.

hardware.opengl = {
	enable = true;
	driSupport = true;
	driSupport32Bit = true;
	extraPackages = with pkgs; [ libva vaapiVdpau libvdpau-va-gl ];
};

As of April 2024, the support for Wayland is experimental. The first version to support it is in this 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.