Files
nix/hosts/common/system/configs/getty/default.nix
2024-07-08 20:01:55 +03:00

10 lines
187 B
Nix

{ config, lib, ... }:
{
services.getty.extraArgs = lib.mkIf (config.services.getty.autologinUser != null) [
"--skip-login"
"--noissue"
"--nohints"
"--nohostname"
];
}