10 lines
137 B
Nix
10 lines
137 B
Nix
|
{ lib, pkgs, config, ...}:
|
||
|
{
|
||
|
imports = [ ./mips.nix ];
|
||
|
config = {
|
||
|
kernel.config = {
|
||
|
CPU_LITTLE_ENDIAN = "y";
|
||
|
};
|
||
|
};
|
||
|
}
|