nixos-hardware/nxp
Jörg Thalheim c84a8f2423 nxp-imx8: drop kernel overlay
With overlays one cannot re-use nixpkgs across different machines,
which is a performance issues. In this instance it's not really needed.
2023-05-05 09:22:26 +02:00
..
common nxp-imx8: drop kernel overlay 2023-05-05 09:22:26 +02:00
imx8qm-mek nxp-imx8: drop kernel overlay 2023-05-05 09:22:26 +02:00
imx8qxp-mek nxp: imx8: Fix wrong paths to imx-uboot.nix file 2023-03-07 13:54:38 +02:00
README.md nxp: imx8: Fix wrong paths to imx-uboot.nix file 2023-03-07 13:54:38 +02:00

README.md

NXP i.MX8 SOC family support

1. Supported devices

2. How to use

Currently this NXP overlay is used for generating EFI-bootable NixOS images. I recommend to use Tow-Boot as a bootloader, but U-Boot from this overlay can also be used. U-Boot was tested separately from NixOS.

Code snippet example that enables imx8qm configuration:

{ nixos-hardware, }: {
  system = "aarch64-linux";
  modules = [
    nixos-hardware.nixosModules.imx8qm-mek
  ];
}