chore: amdvlk has been replaced by RADV, which is enabled by default apparently? (wip)

This commit is contained in:
Ahwx 2025-10-07 13:05:00 +02:00
parent c09d9a5e9d
commit af5ed3080c

View file

@ -23,11 +23,11 @@ in
libvdpau-va-gl libvdpau-va-gl
vulkan-loader vulkan-loader
vulkan-validation-layers vulkan-validation-layers
amdvlk # amdvlk # error: 'amdvlk' has been removed since it was deprecated by AMD. Its replacement, RADV, is enabled by default.
mesa.opencl mesa.opencl
]; ];
extraPackages32 = with pkgs; [ extraPackages32 = with pkgs; [
driversi686Linux.amdvlk # Install amdvlk for 32 bit applications as well # driversi686Linux.amdvlk # Install amdvlk for 32 bit applications as well
]; ];
}; };
enableRedistributableFirmware = true; enableRedistributableFirmware = true;
@ -36,7 +36,7 @@ in
boot.initrd.kernelModules = [ "amdgpu" ]; boot.initrd.kernelModules = [ "amdgpu" ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
amdvlk # amdvlk
]; ];
}; };
} }