From 794fb8003d38888581f1bab7b86e9e33b06ef2b2 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Fri, 23 Jan 2026 10:30:30 +0530 Subject: [PATCH] feat: add vulkan drivers for both 32 and 64 bit arch --- hosts/default/configuration.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index e8736dc..f459142 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -150,7 +150,18 @@ # Make sure opengl is enabled hardware.graphics.enable = true; - hardware.graphics.extraPackages = with pkgs; [ intel-compute-runtime intel-media-driver ocl-icd ]; + hardware.graphics.enable32Bit = true; + hardware.graphics.extraPackages = with pkgs; [ + intel-compute-runtime + intel-media-driver + ocl-icd + vulkan-headers + vulkan-loader + vulkan-validation-layers + libva-vdpau-driver + libvdpau-va-gl + mesa + ]; console = { earlySetup = true;