From 8c2e513fd90d9413ed6e995b36c170986eda259e 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;