mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
53e2a96a9e
Signed-off-by: Ganga Ram <Ganga.Ram@tii.ae>
16 lines
322 B
Nix
16 lines
322 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
nixpkgs.hostPlatform = "aarch64-linux";
|
|
|
|
boot = {
|
|
kernelPackages = pkgs.linuxPackagesFor (pkgs.callPackage ./bsp/imx8mq-linux.nix {});
|
|
initrd.includeDefaultModules = lib.mkForce false;
|
|
};
|
|
|
|
disabledModules = ["profiles/all-hardware.nix"];
|
|
|
|
hardware.deviceTree.enable = true;
|
|
}
|