mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01: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;
|
||
|
}
|