NixToSee/system_profiles/components/serial-console.nix
2025-06-17 01:26:12 +02:00

8 lines
214 B
Nix

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