liminix/modules/arch/mipsel.nix

10 lines
126 B
Nix

{ config, ...}:
{
imports = [ ./mips.nix ];
config = {
kernel.config = {
CPU_LITTLE_ENDIAN = "y";
};
};
}