mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			333 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			333 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, options, ... }:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../common/pc/laptop
 | 
						|
    ../../common/pc/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware =
 | 
						|
    lib.mkDefault {
 | 
						|
      bluetooth.enable = true;
 | 
						|
    }
 | 
						|
    # Enable TUXEDO's kernel drivers if they are available
 | 
						|
    // lib.optionalAttrs (options.hardware ? tuxedo-drivers) {
 | 
						|
      tuxedo-drivers.enable = true;
 | 
						|
    };
 | 
						|
}
 |