fix laggy mouse movement when on screen plugged in nvidia gpu

This commit is contained in:
2025-02-20 18:23:26 +01:00
parent 704aea3c29
commit 77912390ec

View File

@ -1,6 +1,7 @@
{ ... }: { ... }:
{ {
mods.x11.enable = true;
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
monitor = [ monitor = [
"HDMI-A-1, 1920x1080@60, 0x0, auto" "HDMI-A-1, 1920x1080@60, 0x0, auto"
@ -14,5 +15,11 @@
"3, monitor:DP-1" "3, monitor:DP-1"
"4, monitor:DP-3" "4, monitor:DP-3"
]; ];
env = [
"AQ_DRM_DEVICES,/dev/dri/card1:/dev/dri/card0"
"LIBVA_DRIVER_NAME,nvidia"
"__GLX_VENDOR_LIBRARY_NAME,nvidia"
];
cursor.no_hardware_cursors = 1;
}; };
} }