aarpc, amdgpu steamvr fix, deadbeef, 😭

This commit is contained in:
k3t
2026-07-10 23:44:41 -06:00
parent 7c0ab9e7a4
commit 6514158245
8 changed files with 147 additions and 13 deletions
+17 -9
View File
@@ -1,12 +1,20 @@
{ pkgs, ... }:
{
# Graphics
hardware.enableRedistributableFirmware = true;
hardware.graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
vkbasalt
];
services.lact.enable = true;
nixpkgs.config.rocmSupport = true;
hardware = {
amdgpu = {
opencl.enable = true;
initrd.enable = true;
};
enableRedistributableFirmware = true;
graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
vkbasalt
];
};
};
}
}