mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			322 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			322 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  pkgs,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  nixpkgs.hostPlatform = "aarch64-linux";
 | 
						|
 | 
						|
  boot = {
 | 
						|
    kernelPackages = pkgs.linuxPackagesFor (pkgs.callPackage ./bsp/imx8mp-linux.nix {});
 | 
						|
    initrd.includeDefaultModules = lib.mkForce false;
 | 
						|
  };
 | 
						|
 | 
						|
  disabledModules = ["profiles/all-hardware.nix"];
 | 
						|
 | 
						|
  hardware.deviceTree.enable = true;
 | 
						|
}
 |