nix/host/x86_64-linux/max/Power.nix

17 lines
340 B
Nix
Raw Normal View History

2024-12-11 07:30:56 +03:00
{
pkgs,
...
}: {
2024-12-11 09:41:25 +03:00
hardware.cpu.amd.ryzen-smu.enable = true;
2024-12-11 07:30:56 +03:00
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
2024-12-11 09:35:06 +03:00
ryzenadj
2024-12-11 07:30:56 +03:00
# SRC: https://github.com/nbfc-linux/nbfc-linux
nbfc-linux
];
}