mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
19 lines
342 B
Nix
19 lines
342 B
Nix
![]() |
{pkgs, ...}: {
|
||
|
hardware = {
|
||
|
graphics = {
|
||
|
enable = true;
|
||
|
|
||
|
extraPackages = with pkgs; [
|
||
|
rocm-opencl-icd
|
||
|
rocm-opencl-runtime
|
||
|
rocmPackages.clr.icd
|
||
|
pkgs.amdvlk
|
||
|
];
|
||
|
extraPackages32 = [
|
||
|
pkgs.driversi686Linux.amdvlk
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
boot.initrd.kernelModules = ["amdgpu"];
|
||
|
}
|