nix-config/hosts/toaster/amd.nix

20 lines
380 B
Nix
Raw Normal View History

2024-12-31 13:52:57 +00:00
{ pkgs, config, ... }: {
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [
# use new amd pstate driver
"amd_pstate=active"
];
2024-12-31 17:13:04 +01:00
# hardware.graphics = {
# extraPackages = with pkgs; [
# rocm-opencl-icd
# rocm-opencl-runtime
# amdvlk
# ];
# extraPackages32 = with pkgs; [
# driversi686Linux.amdvlk
# ];
# };
2024-12-31 13:52:57 +00:00
}