mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
17 lines
335 B
Nix
17 lines
335 B
Nix
![]() |
{pkgs, ...}: {
|
||
|
hardware = {
|
||
|
graphics = {
|
||
|
enable = true;
|
||
|
extraPackages = with pkgs; [
|
||
|
rocmPackages.clr.icd
|
||
|
pkgs.amdvlk
|
||
|
];
|
||
|
extraPackages32 = [
|
||
|
pkgs.driversi686Linux.amdvlk
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
boot.initrd.kernelModules = ["amdgpu"];
|
||
|
services.xserver.videoDrivers = ["amdgpu"];
|
||
|
}
|