10 lines
182 B
Nix
10 lines
182 B
Nix
{ lib, pkgs, config, ...}:
|
|
{
|
|
imports = [ ./mips.nix ];
|
|
config = {
|
|
kernel.config = {
|
|
CPU_BIG_ENDIAN = "y";
|
|
};
|
|
system.outputs.u-boot = pkgs.ubootQemuMips;
|
|
};
|
|
}
|