diff options
author | Alan Pearce | 2020-04-08 11:20:19 +0200 |
---|---|---|
committer | Alan Pearce | 2020-04-08 11:20:19 +0200 |
commit | b54720698232535dec65603ad17dc93c5dc409d2 (patch) | |
tree | 420383093ccfd6c2eb2847acf205c63a65ee3033 | |
parent | d74cb57bc21101c0efe0c865fe5ffa319672d401 (diff) | |
download | nixfiles-b54720698232535dec65603ad17dc93c5dc409d2.tar.lz nixfiles-b54720698232535dec65603ad17dc93c5dc409d2.tar.zst nixfiles-b54720698232535dec65603ad17dc93c5dc409d2.zip |
prefect: set cpu bias to performance
As a desktop machine, this is fine. Since it's a >2011 Intel CPU, it uses the intel_pstate driver/governor combination, meaning that the only available governors are performance and powersave.
-rw-r--r-- | system/prefect.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/prefect.nix b/system/prefect.nix index 73803c12..7609d9a3 100644 --- a/system/prefect.nix +++ b/system/prefect.nix @@ -39,7 +39,7 @@ }; powerManagement.enable = false; - # powerManagement.cpuFreqGovernor = "performance"; + powerManagement.cpuFreqGovernor = "performance"; networking = { hostName = "prefect"; domain = pkgs.lib.mkForce "alanpearce.eu"; |