mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
16 lines
291 B
Nix
Executable file
16 lines
291 B
Nix
Executable file
{pkgs, ...}: {
|
|
hardware = {
|
|
graphics = {
|
|
enable = true;
|
|
|
|
extraPackages = with pkgs; [
|
|
rocmPackages.clr.icd
|
|
amdvlk
|
|
];
|
|
extraPackages32 = with pkgs; [
|
|
driversi686Linux.amdvlk
|
|
];
|
|
};
|
|
};
|
|
boot.initrd.kernelModules = ["amdgpu"];
|
|
}
|