phone: Use minimum cpu clock rate

Fixes an issue where the phone would consistently crash all the time
when performing slightly intensive tasks.
This commit is contained in:
Donovan Glover 2024-06-28 13:55:20 -04:00
parent 299a5e0bd6
commit a9e27e260b
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -64,5 +64,14 @@ in
openssh.enable = true;
};
powerManagement.enable = true;
powerManagement = {
enable = true;
cpufreq = rec {
min = 648000;
max = min;
};
cpuFreqGovernor = "powersave";
};
}