2009-03-06 13:27:15 +01:00
|
|
|
|
{pkgs, config, ...}:
|
|
|
|
|
|
|
|
|
|
let
|
2009-07-16 15:55:11 +02:00
|
|
|
|
|
|
|
|
|
inherit (pkgs.lib) mkOption mkIf singleton;
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2009-03-06 13:27:15 +01:00
|
|
|
|
|
|
|
|
|
options = {
|
2009-07-16 15:55:11 +02:00
|
|
|
|
|
|
|
|
|
services.mingetty = {
|
|
|
|
|
|
|
|
|
|
ttys = mkOption {
|
|
|
|
|
default = [1 2 3 4 5 6];
|
|
|
|
|
description = ''
|
|
|
|
|
The list of tty (virtual console) devices on which to start a
|
|
|
|
|
login prompt.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
waitOnMounts = mkOption {
|
|
|
|
|
default = false;
|
|
|
|
|
description = ''
|
|
|
|
|
Whether the login prompts on the virtual consoles will be
|
|
|
|
|
started before or after all file systems have been mounted. By
|
|
|
|
|
default we don't wait, but if for example your /home is on a
|
|
|
|
|
separate partition, you may want to turn this on.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
greetingLine = mkOption {
|
|
|
|
|
default = ''<<< Welcome to NixOS (\m) - Kernel \r (\l) >>>'';
|
|
|
|
|
description = ''
|
|
|
|
|
Welcome line printed by mingetty.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-03-06 13:27:15 +01:00
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
helpLine = mkOption {
|
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
|
|
|
|
Help line printed by mingetty below the welcome line.
|
|
|
|
|
Used by the installation CD to give some hints on
|
|
|
|
|
how to proceed.
|
|
|
|
|
'';
|
2009-03-06 13:27:15 +01:00
|
|
|
|
};
|
2009-07-16 15:55:11 +02:00
|
|
|
|
|
2009-03-06 13:27:15 +01:00
|
|
|
|
};
|
2009-07-16 15:55:11 +02:00
|
|
|
|
|
2009-03-06 13:27:15 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
|
|
|
|
|
# Generate a separate job for each tty.
|
|
|
|
|
jobs = map (ttyNumber: {
|
2009-03-06 13:27:15 +01:00
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
name = "tty${toString ttyNumber}";
|
2006-11-19 21:07:45 +01:00
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
startOn = "udev";
|
|
|
|
|
|
|
|
|
|
exec = "${pkgs.mingetty}/sbin/mingetty --loginprog=${pkgs.pam_login}/bin/login --noclear tty${toString ttyNumber}";
|
|
|
|
|
|
|
|
|
|
}) config.services.mingetty.ttys;
|
|
|
|
|
|
|
|
|
|
environment.etc = singleton
|
|
|
|
|
{ # Friendly greeting on the virtual consoles.
|
2009-05-28 13:34:46 +02:00
|
|
|
|
source = pkgs.writeText "issue" ''
|
|
|
|
|
|
|
|
|
|
[1;32m${config.services.mingetty.greetingLine}[0m
|
|
|
|
|
${config.services.mingetty.helpLine}
|
|
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
target = "issue";
|
2009-07-16 15:55:11 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2006-11-19 21:07:45 +01:00
|
|
|
|
}
|