2024-06-03 09:20:11 +02:00
|
|
|
{
|
|
|
|
# Restart the serial console
|
|
|
|
systemd.services."serial-getty@ttyS0" = {
|
|
|
|
enable = true;
|
|
|
|
wantedBy = [ "getty.target" ];
|
|
|
|
serviceConfig.Restart = "always";
|
|
|
|
};
|
2024-07-22 13:34:19 +02:00
|
|
|
|
|
|
|
# Enable serial console
|
|
|
|
boot.kernelParams = [
|
|
|
|
"console=tty1"
|
|
|
|
"console=ttyS0,115200"
|
|
|
|
];
|
2024-06-03 09:20:11 +02:00
|
|
|
}
|