nix-flake/modules/hardware/misc/serial.nix

10 lines
No EOL
242 B
Nix

{ ... }: let
serial = "0";
in {
boot.kernelParams = [ "console=ttyS${serial},115200" ];
systemd.services."serial-getty@ttyS${serial}" = {
enable = true;
wantedBy = [ "getty.target" ];
serviceConfig.Restart = "always";
};
}