From cb4ab484536e5e92bc44c1536b5a12cbb930d1a0 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Mon, 29 Jun 2026 01:17:37 +0200 Subject: [PATCH] Add nouveau to built vulkan drivers --- modules/mesa.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mesa.nix b/modules/mesa.nix index 0b1e454..11cc220 100644 --- a/modules/mesa.nix +++ b/modules/mesa.nix @@ -1,7 +1,7 @@ { lib, pkgs, functions, isLaptop, ... }: let - selected_vkDrivers = [ "amd" /* Needed by steam => */ "microsoft-experimental" ] ++ lib.optional (!isLaptop) "intel"; + selected_vkDrivers = [ "amd" "nouveau" /* Needed by steam => */ "microsoft-experimental" ] ++ lib.optional (!isLaptop) "intel"; selected_glDrivers = [ "radeonsi" "zink" ] ++ lib.optional (!isLaptop) "i915"; in {