dotfiles/nixos/systems/blowhole/sol.nix
magic_rb aff0158ef7
Reformat the whole flake using alejandra
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-02 22:17:03 +01:00

13 lines
263 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
'';
}