mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			319 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			319 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, config, ... }:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/pc/laptop/ssd
 | 
						|
    ../../../common/cpu/intel/haswell
 | 
						|
  ];
 | 
						|
 | 
						|
  # broadcom-wl
 | 
						|
  hardware.enableRedistributableFirmware = lib.mkDefault true;
 | 
						|
  boot.extraModulePackages = with config.boot.kernelPackages; [ broadcom_sta ];
 | 
						|
  boot.kernelModules = [ "wl" ];
 | 
						|
}
 |