From 8203c909ad267167779670eaeb7e27525c03d825 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 14 Nov 2025 10:09:03 +0100 Subject: [PATCH] chore(nix): update CPU governor to performance - Changed `powerManagement.cpuFreqGovernor` from `ondemand` to `performance` for enhanced CPU performance. - Aligns system configuration with performance optimization goals. --- systems/x86_64-linux/nixtee1/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/nixtee1/default.nix b/systems/x86_64-linux/nixtee1/default.nix index 2d419d9..02807ef 100644 --- a/systems/x86_64-linux/nixtee1/default.nix +++ b/systems/x86_64-linux/nixtee1/default.nix @@ -45,7 +45,7 @@ networking.firewall.allowPing = true; - powerManagement.cpuFreqGovernor = "ondemand"; + powerManagement.cpuFreqGovernor = "performance"; systemd.user.extraConfig = "DefaultLimitNOFILE=32768";