9 lines
245 B
Nix
9 lines
245 B
Nix
{
|
|
boot.kernelParams = [ "console=ttyS0,115200n8" "console=tty0" ];
|
|
boot.loader.grub.extraConfig = "
|
|
serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
|
|
terminal_input serial console
|
|
terminal_output serial console
|
|
";
|
|
}
|