mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	The i.MX93 EVK provides a platform for comprehensive evaluation of the i.MX93 application processors. This change adds support in NixOS hardware to provide a template for customized i.MX93-based platforms. Signed-off-by: Govind Singh <govind.singh@tii.ae>
		
			
				
	
	
		
			20 lines
		
	
	
		
			358 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			358 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ pkgs, ... }:
 | 
						|
{
 | 
						|
  nixpkgs.overlays = [
 | 
						|
    (import ./overlay.nix)
 | 
						|
  ];
 | 
						|
 | 
						|
  imports = [
 | 
						|
    ./modules.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.loader.grub.extraFiles = {
 | 
						|
    "imx93-11x11-evk.dtb" = "${pkgs.callPackage ./bsp/imx93-linux.nix { }}/dtbs/freescale/imx93-11x11-evk.dtb";
 | 
						|
  };
 | 
						|
 | 
						|
  hardware.deviceTree = {
 | 
						|
    filter = "imx93-*.dtb";
 | 
						|
    name = "imx93-11x11-evk.dtb";
 | 
						|
  };
 | 
						|
}
 |