Add plymouth

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-06-25 20:16:25 +03:00
parent a69695dd73
commit eaa63dd272
6 changed files with 79 additions and 9 deletions

View File

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