From 537068fab8e982d3f27018bbd17c03476f556390 Mon Sep 17 00:00:00 2001 From: chn Date: Fri, 3 Oct 2025 12:02:18 +0800 Subject: [PATCH] modules.hardware.cpu: add ryzenadj to amd cpu --- modules/hardware/cpu.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hardware/cpu.nix b/modules/hardware/cpu.nix index 79027f82..03a2071c 100644 --- a/modules/hardware/cpu.nix +++ b/modules/hardware/cpu.nix @@ -22,7 +22,7 @@ inputs: (inputs.lib.mkIf (cpu == "amd") { hardware.cpu.amd = { updateMicrocode = true; ryzen-smu.enable = true; }; - environment.systemPackages = with inputs.pkgs; [ zenmonitor ]; + environment.systemPackages = with inputs.pkgs; [ zenmonitor ryzenadj ]; programs.ryzen-monitor-ng.enable = true; }) ]);