server_config/power.nix
2026-07-03 17:39:15 +02:00

17 lines
368 B
Nix

{ config, pkgs, ... }:
{
services.tlp = {
enable = true;
settings = {
CPU_SCALING_GOVERNOR_ON_AC = "powersave";
CPU_ENERGY_PERF_POLICY_ON_AC = "power";
RUNTIME_PM_ON_AC = "auto";
DISK_DEVICES = "ata-APPLE_HDD_ST1000LM024_S35RJ9BG703977";
DISK_SPINDOWN_TIMEOUT_ON_AC = "120";
DISK_APM_LEVEL_ON_AC="128";
};
};
}