dotfiles/nixos/systems/blowhole/sol.nix
Magic_RB 369b6ddadf
Enable Serial over Lan on blowhole
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-07-20 12:35:34 +02:00

14 lines
265 B
Nix

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