diff --git a/modules/services/ttys/mingetty.nix b/modules/services/ttys/mingetty.nix index d8abc129e2d..e924d38dd60 100644 --- a/modules/services/ttys/mingetty.nix +++ b/modules/services/ttys/mingetty.nix @@ -11,7 +11,10 @@ with pkgs.lib; services.mingetty = { ttys = mkOption { - default = [ "tty1" "tty2" "tty3" "tty4" "tty5" "tty6" ]; + default = + if pkgs.stdenv.isArm + then [ "ttyS0" ] # presumably an embedded platform such as a plug + else [ "tty1" "tty2" "tty3" "tty4" "tty5" "tty6" ]; description = '' The list of tty devices on which to start a login prompt. '';