From eb3b4f7531d74ec5b6289b342ba03f80394d7d61 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 2 Dec 2025 15:39:19 -0500 Subject: [PATCH] fix amdgpu ppfeaturemask --- system/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/common.nix b/system/common.nix index e584510..680175e 100644 --- a/system/common.nix +++ b/system/common.nix @@ -27,7 +27,7 @@ services.tuned.enable = true; # allow overclocking (I actually underclock but lol) - hardware.amdgpu.overdrive.ppfeaturemask = "0xFFF7FFFF"; + hardware.amdgpu.overdrive.ppfeaturemask = "0xFFFFFFFF"; hardware.enableRedistributableFirmware = true; hardware.cpu.amd.updateMicrocode = true;