mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			332 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			332 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [ 
 | 
						|
    ../../.
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  # Built-in iSight is recognized by the generic uvcvideo kernel module
 | 
						|
  hardware.facetimehd.enable = false;
 | 
						|
 | 
						|
  hardware.cpu.intel.updateMicrocode =
 | 
						|
    lib.mkDefault config.hardware.enableRedistributableFirmware;
 | 
						|
}
 |