mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
20 lines
404 B
Nix
20 lines
404 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [ auto-cpufreq ];
|
|
systemd.services.auto-cpufreq.enable = true;
|
|
services.auto-cpufreq.enable = true;
|
|
services.auto-cpufreq.settings = {
|
|
charger = {
|
|
governor = "performance";
|
|
turbo = "auto";
|
|
};
|
|
battery = {
|
|
governor = "schedutil";
|
|
scaling_max_freq = 3800000;
|
|
turbo = "never";
|
|
};
|
|
};
|
|
|
|
}
|