mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-07 02:18:47 +08:00
The CompuLab UCM-iMX95 Evaluation Kit provides a platform for comprehensive evaluation of the NXP i.MX95 application processor. This change adds support in NixOS hardware to provide a template for customized i.MX95-based platforms. UCM-iMX95: https://www.compulab.com/products/som-evaluation-kits/ucm-imx95-evaluation-kit/ Signed-off-by: Govind Singh <govind.singh@tii.ae>
20 lines
345 B
Nix
20 lines
345 B
Nix
{ pkgs, ... }:
|
|
{
|
|
nixpkgs.overlays = [
|
|
(import ./overlay.nix)
|
|
];
|
|
|
|
imports = [
|
|
./modules.nix
|
|
];
|
|
|
|
boot.loader.grub.extraFiles = {
|
|
"ucm-imx95.dtb" = "${pkgs.callPackage ./bsp/ucm-imx95-linux.nix { }}/dtbs/compulab/ucm-imx95.dtb";
|
|
};
|
|
|
|
hardware.deviceTree = {
|
|
filter = "ucm-imx95.dtb";
|
|
name = "ucm-imx95.dtb";
|
|
};
|
|
}
|