mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			244 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			244 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, config, pkgs, modulesPath, ... }:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/cpu/intel/haswell
 | 
						|
    ../../../common/pc/ssd
 | 
						|
    "${modulesPath}/hardware/network/broadcom-43xx.nix"
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.graphics.enable = lib.mkDefault true;
 | 
						|
}
 |