nix-config/hosts/toaster/amd.nix

23 lines
424 B
Nix
Raw Normal View History

2025-01-26 14:16:47 +01:00
{ ... }:
2025-01-11 03:55:19 +01:00
{
2024-12-31 13:52:57 +00:00
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [
# use new amd pstate driver
"amd_pstate=active"
2025-01-21 17:15:17 +01:00
# fix flicker
"amdgpu.dcdebugmask=0x10"
];
2025-01-11 03:55:19 +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
}