You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On NixOS, we use /run for many runtime things such as symlinking the current system state to /run/current-system. This means the system "installed" packages will not be accessible unless /run/current-system is available. We also have the OpenGL drivers symlinked to /run/opengl-driver. Without that symlink being available, GPU related access via Mesa is not possible. Since /run isn't shared to krun, this means system packages and OpenGL are both not available.
Possible solution is to check if NIXOS_SYSTEM is an env var set and to mount the value of it to /run/current-system. A similar solution could be done for OpenGL.
The text was updated successfully, but these errors were encountered:
On NixOS, we use
/run
for many runtime things such as symlinking the current system state to/run/current-system
. This means the system "installed" packages will not be accessible unless/run/current-system
is available. We also have the OpenGL drivers symlinked to/run/opengl-driver
. Without that symlink being available, GPU related access via Mesa is not possible. Since/run
isn't shared tokrun
, this means system packages and OpenGL are both not available.Possible solution is to check if
NIXOS_SYSTEM
is an env var set and to mount the value of it to/run/current-system
. A similar solution could be done for OpenGL.The text was updated successfully, but these errors were encountered: