mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
17 lines
341 B
Nix
Executable file
17 lines
341 B
Nix
Executable file
{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"];
|
|
}
|