mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	We havent't had anything meaningful configuration in this module for a while. So let's deprecate it.
		
			
				
	
	
		
			16 lines
		
	
	
		
			281 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			281 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
with lib;
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/cpu/intel/sandy-bridge
 | 
						|
    ../../../common/pc
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/laptop/hdd
 | 
						|
  ];
 | 
						|
 | 
						|
  config = {
 | 
						|
    services.thermald.enable = mkDefault true;
 | 
						|
  };
 | 
						|
}
 |