mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	Add check for power-profiles-daemon.enable
Gnome 40 now uses power-profile-daemon https://gitlab.freedesktop.org/hadess/power-profiles-daemon , which clashes with tlp. This check will disable tlp whenever it finds that the power-profiles-daemon is activated.
This commit is contained in:
		@@ -3,5 +3,12 @@
 | 
			
		||||
{
 | 
			
		||||
  imports = [ ../. ];
 | 
			
		||||
 | 
			
		||||
  services.tlp.enable = lib.mkDefault true;
 | 
			
		||||
  # Gnome 40 introduced a new way of managing power, without tlp.
 | 
			
		||||
  # However, these 2 services clash when enabled simultaneously.
 | 
			
		||||
  # https://github.com/NixOS/nixos-hardware/issues/260
 | 
			
		||||
  services.tlp.enable =
 | 
			
		||||
    if config.services.power-profiles-daemon.enable == true then
 | 
			
		||||
      false
 | 
			
		||||
    else
 | 
			
		||||
      true;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user