f75995e895
for settings that are common to all mipse[lb] but would not be shared with e.g. aarch64 or x86
9 lines
137 B
Nix
9 lines
137 B
Nix
{ lib, pkgs, config, ...}:
|
|
{
|
|
imports = [ ./mips.nix ];
|
|
config = {
|
|
kernel.config = {
|
|
CPU_LITTLE_ENDIAN = "y";
|
|
};
|
|
};
|
|
}
|