From a51ad91a0dd62b333520843a01fd68286e8ddac9 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 11 Dec 2024 07:30:56 +0300 Subject: [PATCH] Max: Add power controls. --- host/x86_64-linux/max/Power.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 host/x86_64-linux/max/Power.nix diff --git a/host/x86_64-linux/max/Power.nix b/host/x86_64-linux/max/Power.nix new file mode 100644 index 00000000..73f7afe6 --- /dev/null +++ b/host/x86_64-linux/max/Power.nix @@ -0,0 +1,14 @@ +{ + pkgs, + ... +}: { + environment.systemPackages = with pkgs; [ + # SRC: https://github.com/FlyGoat/RyzenAdj + # ./ryzenadj --stapm-limit=45000 --fast-limit=45000 --slow-limit=45000 --tctl-temp=90 + # ryzenAdj --info + RyzenAdj + + # SRC: https://github.com/nbfc-linux/nbfc-linux + nbfc-linux + ]; +}