forked from DGNum/liminix
12 lines
215 B
Nix
12 lines
215 B
Nix
|
{ lib, pkgs, config, ...}:
|
||
|
{
|
||
|
config = {
|
||
|
kernel.config = {
|
||
|
MIPS_ELF_APPENDED_DTB = "y";
|
||
|
};
|
||
|
boot.commandLine = [
|
||
|
"console=ttyS0,115200" # true of all mips we've yet encountered
|
||
|
];
|
||
|
};
|
||
|
}
|