mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			744 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			744 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildLinux
 | 
						|
, fetchFromGitLab
 | 
						|
, ...
 | 
						|
} @ args:
 | 
						|
buildLinux (args
 | 
						|
  // rec {
 | 
						|
  defconfig = "librem5_defconfig";
 | 
						|
  version = "6.6.29-librem5";
 | 
						|
  modDirVersion = version;
 | 
						|
  src = fetchFromGitLab {
 | 
						|
    domain = "source.puri.sm";
 | 
						|
    owner = "Librem5";
 | 
						|
    repo = "linux";
 | 
						|
    rev = "pureos/6.6.29pureos1";
 | 
						|
    hash = "sha256-i8HSAJ1/Z2Ux2s3Srse+L0S1Zd/70ldpGBhIgEZ6nBw=";
 | 
						|
  };
 | 
						|
  kernelPatches = [ ];
 | 
						|
  structuredExtraConfig = with lib.kernel; {
 | 
						|
    # buildLinux overrides this and defaults to 32, so go back to the value defined librem5_defconfig
 | 
						|
    # this is required for millipixels to take photos, otherwise the VIDIOC_REQ_BUFS ioctl returns ENOMEM
 | 
						|
    CMA_SIZE_MBYTES = lib.mkForce (freeform "320");
 | 
						|
  };
 | 
						|
}
 | 
						|
  // args.argsOverride or { })
 |