From 3f3eef5f281c0592080c7f21592bf6f120e2a42f Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Wed, 15 Oct 2025 14:56:09 -0400 Subject: [PATCH] Replace deprecated AMDVLK Defaults to RADV --- hosts/default/configuration.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 42a8d27..564b37c 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -384,7 +384,7 @@ in #services.rustdesk-server.openFirewall = false; # RX 6700 XT setup hardware.graphics.extraPackages = [ - pkgs.amdvlk + #pkgs.amdvlk - replaced by RADV (enabled by default) pkgs.libcap pkgs.libva pkgs.mesa @@ -398,11 +398,13 @@ in #pkgs.rocmPackages.rocm-device-libs #pkgs.rocmPackages.rpp ]; + hardware.graphics.enable = true; + hardware.graphics.enable32Bit = true; # To enable Vulkan support for 32-bit applications, also add: - hardware.graphics.extraPackages32 = [ - pkgs.driversi686Linux.amdvlk - ]; + #hardware.graphics.extraPackages32 = [ + # pkgs.driversi686Linux.amdvlk - replaced by RADV..hopefully also 32-bit enabled by default. + #]; hardware.amdgpu.opencl.enable = true;