9 lines
176 B
Nix
9 lines
176 B
Nix
|
{
|
||
|
# Restart the serial console
|
||
|
systemd.services."serial-getty@ttyS0" = {
|
||
|
enable = true;
|
||
|
wantedBy = [ "getty.target" ];
|
||
|
serviceConfig.Restart = "always";
|
||
|
};
|
||
|
}
|