1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{ config, ... }: let user = config.userdata.name; in { systemd.services."getty@".serviceConfig.TTYVTDisallocate = "no"; services.getty = { loginOptions = "-f ${user}"; extraArgs = [ "--nonewline" "--skip-login" "--noclear" "--noissue" ]; }; }