Hey, I want to log in automatically to tty. The proposed solution on the arch wiki doesn't work for me and only results in a blinking "_"
I disabled lightdm and enabled getty on tty1.
sudo systemctl set-default multi-user.target
sudo systemctl disable lightdm
sudo systemctl enable getty@tty1
sudo systemctl disable getty@tty2
contents of /etc/systemd/system/getty@tty1.service.d/autologin.conf:
[Service]
ExecStart=
ExecStart=-/sbin/agetty -o '-p -f -- \u' --noclear --autologin username - $TERM
(username replaced with my actual username)