nix-config/hosts/toaster/amd.nix
2025-01-09 18:37:46 +01:00

23 lines
503 B
Nix

{ pkgs, config, ... }: {
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [
# use new amd pstate driver
"amd_pstate=active"
# try to fix weird flickering
"amdgpu.sg_display=0"
# some weird amd PSR shit...
"amdgpu.dcdebugmask=0x10"
];
# hardware.graphics = {
# extraPackages = with pkgs; [
# rocm-opencl-icd
# rocm-opencl-runtime
# amdvlk
# ];
# extraPackages32 = with pkgs; [
# driversi686Linux.amdvlk
# ];
# };
}