mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
23 lines
370 B
Nix
Executable file
23 lines
370 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
amdgpu.overdrive = {
|
|
enable = true;
|
|
ppfeaturemask = "0xffffffff";
|
|
};
|
|
graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
extraPackages = builtins.attrValues {
|
|
|
|
inherit (pkgs.rocmPackages.clr)
|
|
icd
|
|
;
|
|
};
|
|
|
|
};
|
|
};
|
|
boot.initrd.kernelModules = [
|
|
"amdgpu"
|
|
];
|
|
}
|