liminix/modules/arch/mipsel.nix

10 lines
137 B
Nix

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