mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-25 17:54:35 +00:00
Use hardware.graphics instead of hardware.opengl
This commit is contained in:
parent
cd412906a8
commit
82a07127b7
|
@ -26,14 +26,17 @@ in
|
|||
graphics = {
|
||||
enable = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
# Enable AMDVLK (AMD's open-source Vulkan driver)
|
||||
extraPackages = with pkgs; [ amdvlk ];
|
||||
extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ];
|
||||
};
|
||||
amdvlk
|
||||
|
||||
# OpenCL (Universal GPU computing API - not AMD specific)
|
||||
# To check if this works, run: `nix run nixpkgs#clinfo` (after rebooting)
|
||||
opengl.extraPackages = with pkgs; [rocmPackages.clr.icd];
|
||||
rocmPackages.clr.icd
|
||||
];
|
||||
# AMDVLK for 32-bit applications
|
||||
extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ];
|
||||
};
|
||||
};
|
||||
|
||||
# HIP (SDK that allows running CUDA code on AMD GPUs)
|
||||
|
|
Loading…
Reference in a new issue