mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  inherit (lib) mkOption types;
 | 
						|
 | 
						|
in {
 | 
						|
  imports = [
 | 
						|
    ./linux-6.5.7
 | 
						|
    ./linux-6.1.x
 | 
						|
  ];
 | 
						|
 | 
						|
  options.microsoft-surface.kernelVersion = mkOption {
 | 
						|
    description = "Kernel Version to use (patched for MS Surface)";
 | 
						|
    type = types.enum [ ];
 | 
						|
  };
 | 
						|
}
 |