my nixos dotfiles :3 (git.koi.rip mirror) git.koi.rip/koi/dotfiles
linux dotfiles neovim nixos catppuccin
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

miku: force GBM on QtWebEngine

ref https://github.com/NixOS/nixpkgs/issues/508998

june f18b0f0c 3eb5e574

+6
+6
systems/miku/hardware.nix
··· 56 56 environment.sessionVariables = { 57 57 LIBVA_DRIVER_NAME = "nvidia"; 58 58 __GLX_VENDOR_LIBRARY_NAME = "nvidia"; 59 + 60 + VK_DRIVER_FILES = "/run/opengl-driver/share/vulkan/icd.d/nvidia_icd.x86_64.json"; 61 + 62 + # QtWebEngine 6.10.2 incorrectly detects GBM as unsupported and falls back to Vulkan which 63 + # breaks Chromium applications. See https://github.com/NixOS/nixpkgs/issues/508998 64 + QTWEBENGINE_FORCE_USE_GBM = "1"; 59 65 }; 60 66 61 67 services.xserver.videoDrivers = [ "nvidia" ];