2025-01-19 09:06:27 +03:00
|
|
|
{ config, lib, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.module.live;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
config = lib.mkIf cfg.enable {
|
2025-01-19 09:25:14 +03:00
|
|
|
# services.rogue.enable = true; # NOTE: Not available smh.
|
2025-01-19 09:06:27 +03:00
|
|
|
services.mingetty = {
|
|
|
|
autologinUser = "live";
|
|
|
|
helpLine = ''
|
|
|
|
Welcome! Both live and root users have password "live". Enjoy!
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|