16 lines
297 B
Nix
16 lines
297 B
Nix
|
{ config, lib, ... }:
|
||
|
let
|
||
|
cfg = config.module.live;
|
||
|
in
|
||
|
{
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.rogue.enable = true;
|
||
|
services.mingetty = {
|
||
|
autologinUser = "live";
|
||
|
helpLine = ''
|
||
|
Welcome! Both live and root users have password "live". Enjoy!
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|