From a408e80137af0d57f4795ac3d0862d8a8a9194eb Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sun, 23 Mar 2025 20:23:50 +0100 Subject: [PATCH] perso-desktop: Use amdvlk to improve performance --- hosts/perso-desktop/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/perso-desktop/configuration.nix b/hosts/perso-desktop/configuration.nix index c9fedb0..8444a5b 100644 --- a/hosts/perso-desktop/configuration.nix +++ b/hosts/perso-desktop/configuration.nix @@ -59,6 +59,11 @@ package = pkgs.openrgb-with-all-plugins; }; - chaotic.mesa-git.enable = true; + # Revert to RADV when this https://gitlab.freedesktop.org/mesa/mesa/-/issues/12865 is resolved + chaotic.mesa-git = { + enable = true; + extraPackages = with pkgs; [ rocmPackages.clr.icd amdvlk ]; + extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ]; + }; boot.kernelPackages = pkgs.linuxPackages_cachyos-rc; }