17 lines
340 B
Nix
17 lines
340 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
hardware.cpu.amd.ryzen-smu.enable = true;
|
|
|
|
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
|
|
];
|
|
}
|