fix(gui): add nvidia options

This commit is contained in:
514fpv 2024-06-24 20:28:49 +08:00
parent d56b3fe5b1
commit ee35e49d1a
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -73,7 +73,7 @@ in {
# work around broken nvidia hw cursor on wayland
WLR_NO_HARDWARE_CURSORS = mkIf (cfg.type == "nvidia") "1";
# work around wlroots flickering on pure nvidia
WLR_RENDERER = mkIf (cfg.type == "nvidia") "vulkan";
#WLR_RENDERER = mkIf (cfg.type == "nvidia") "vulkan";
};
specialisation.integratedGraphics = mkIf (cfg.type == "prime") {
@ -103,6 +103,8 @@ in {
options vfio-pci ids=${cfg.arc}
'';
boot.kernelParams = optional intel "i915.fastboot=1";
boot.kernelParams =
optional intel "i915.fastboot=1" ++
optionals nvidia [ "nvidia_drm.modeset=1" "nvidia_drm.fbdev=1" ];
};
}