You have the possabilty to switch from intel to nvidia. HYBRID.
I am not familier with Hybrid card.
Here some INFO
generated from AI using your response.
Your NVIDIA driver seems to be installed correctly via video-hybrid-intel-nvidia-prime
,
but your external HDMI monitor isn’t working. (Because you where at office)
Here are a few steps to fix that if needed:
1. Check if NVIDIA is working correctly
Run:
nvidia-smi
If it works and your GPU is detected, the driver is active.
2. Check the external monitor
Connect the HDMI monitor and check:
xrandr --listmonitors
xrandr --query
If the HDMI monitor is not detected, try:
xrandr --auto
Or force it manually (replace HDMI-1
if needed):
xrandr --output HDMI-1 --auto
3. Use PRIME for NVIDIA
You’re using a hybrid setup (video-hybrid-intel-nvidia-prime
), so Intel is active by default. To force the NVIDIA GPU:
prime-run glxinfo | grep "OpenGL renderer"
If it shows “Mesa Intel UHD Graphics 630” instead of NVIDIA, try:
__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia glxinfo | grep "OpenGL renderer"
If that works, you can start programs with:
prime-run <program>
4. Check Kernel Modules
Are the correct NVIDIA modules loaded? Check with:
lsmod | grep nvidia
If it’s empty, try:
sudo modprobe nvidia
Then restart your system.
5. Check the log file
If it still doesn’t work, check the logs:
journalctl -b | grep -i nvidia
And share any error messages you find.
Do you want to use NVIDIA as the primary GPU permanently? Then you’ll need to configure nvidia-xrun
or another PRIME setup.
Hope this gives some info how to setup the card.
