From 7d3b66d73140cd570d7d1287de852312ad8b5d3d Mon Sep 17 00:00:00 2001 From: Kabbone Date: Tue, 21 Mar 2023 17:33:50 +0100 Subject: [PATCH] hosts: set cpu governor to schedutil on laptop --- hosts/laptop/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index fbc2cd8..0a28ce6 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -160,7 +160,7 @@ # high-resolution display hardware.video.hidpi.enable = lib.mkDefault true; powerManagement = { - cpuFreqGovernor = lib.mkDefault "powersave"; + cpuFreqGovernor = lib.mkDefault "schedutil"; powertop.enable = true; }; }