mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			374 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			374 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
with lib;
 | 
						|
let
 | 
						|
  xcfg = config.services.xserver;
 | 
						|
in
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/cpu/intel/sandy-bridge
 | 
						|
    ../../../common/pc
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/laptop/hdd
 | 
						|
    ../../../common/pc/hdd
 | 
						|
 | 
						|
    ./network.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  config = {
 | 
						|
    services.thermald.enable = mkDefault true;
 | 
						|
  };
 | 
						|
}
 |