summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2020-04-08 11:20:19 +0200
committerAlan Pearce2020-04-08 11:20:19 +0200
commitb54720698232535dec65603ad17dc93c5dc409d2 (patch)
tree420383093ccfd6c2eb2847acf205c63a65ee3033 /system
parentd74cb57bc21101c0efe0c865fe5ffa319672d401 (diff)
downloadnixfiles-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.
Diffstat (limited to 'system')
-rw-r--r--system/prefect.nix2
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";