blob: 725eb4b2f3524378a33cb43499c18db0e61590fd (
plain) (
tree)
|
|
{ config, ... }: let
user = config.userdata.name;
in {
systemd.services."getty@".serviceConfig.TTYVTDisallocate = "no";
services.getty = {
loginOptions = "-f ${user}";
extraArgs = [
"--nonewline"
"--skip-login"
"--noclear"
"--noissue"
];
};
}
|