1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-03 03:23:35 +02:00

star64: set governor to schedutil

By default it's "performance"
This commit is contained in:
Francesco Gazzetta 2023-09-30 17:37:38 +02:00
parent 89c6109adc
commit 6d05cccc80

View File

@ -41,4 +41,8 @@
hardware.deviceTree.name =
lib.mkDefault "starfive/jh7110-pine64-star64.dtb";
# Only "performance" and "schedutil" are available,
# and "performance" takes precedence by default, which is a waste of power.
powerManagement.cpuFreqGovernor = lib.mkDefault "schedutil";
}