mirror of
				https://github.com/librephoenix/nixos-config
				synced 2025-11-04 09:54:00 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 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";
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
}
 |