2014-04-14 16:26:48 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2009-03-06 13:27:15 +01:00
|
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
|
with lib;
|
2009-07-16 15:55:11 +02:00
|
|
|
|
|
2015-09-18 18:50:48 +02:00
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
autologinArg = optionalString (config.services.mingetty.autologinUser != null) "--autologin ${config.services.mingetty.autologinUser}";
|
|
|
|
|
gettyCmd = extraArgs: "@${pkgs.utillinux}/sbin/agetty agetty --login-program ${pkgs.shadow}/bin/login ${autologinArg} ${extraArgs}";
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2009-03-06 13:27:15 +01:00
|
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
services.mingetty = {
|
|
|
|
|
|
2015-04-12 04:14:24 +02:00
|
|
|
|
autologinUser = mkOption {
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = null;
|
|
|
|
|
description = ''
|
|
|
|
|
Username of the account that will be automatically logged in at the console.
|
|
|
|
|
If unspecified, a login prompt is shown as usual.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
greetingLine = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.str;
|
2009-07-16 15:55:11 +02:00
|
|
|
|
description = ''
|
|
|
|
|
Welcome line printed by mingetty.
|
2015-09-18 18:50:48 +02:00
|
|
|
|
The default shows current NixOS version label, machine type and tty.
|
2009-07-16 15:55:11 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2009-03-06 13:27:15 +01:00
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
helpLine = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.lines;
|
2009-07-16 15:55:11 +02:00
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
2012-06-18 23:58:31 +02:00
|
|
|
|
Help line printed by mingetty below the welcome line.
|
2009-07-16 15:55:11 +02:00
|
|
|
|
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
|
|
|
|
|
2014-02-03 23:20:41 +01:00
|
|
|
|
serialSpeed = mkOption {
|
|
|
|
|
type = types.listOf types.int;
|
|
|
|
|
default = [ 115200 57600 38400 9600 ];
|
|
|
|
|
example = [ 38400 9600 ];
|
|
|
|
|
description = ''
|
|
|
|
|
Bitrates to allow for agetty's listening on serial ports. Listing more
|
|
|
|
|
bitrates gives more interoperability but at the cost of long delays
|
|
|
|
|
for getting a sync on the line.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 13:27:15 +01:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-03-06 13:27:15 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
###### implementation
|
|
|
|
|
|
2015-09-18 18:50:48 +02:00
|
|
|
|
config = {
|
|
|
|
|
# Note: this is set here rather than up there so that changing
|
|
|
|
|
# nixosLabel would not rebuild manual pages
|
|
|
|
|
services.mingetty.greetingLine = mkDefault ''<<< Welcome to NixOS ${config.system.nixosLabel} (\m) - \l >>>'';
|
|
|
|
|
|
2014-03-12 18:29:06 +01:00
|
|
|
|
systemd.services."getty@" =
|
2017-07-16 19:28:02 +02:00
|
|
|
|
{ serviceConfig.ExecStart = [
|
|
|
|
|
"" # override upstream default with an empty ExecStart
|
|
|
|
|
(gettyCmd "--noclear --keep-baud %I 115200,38400,9600 $TERM")
|
|
|
|
|
];
|
2014-03-12 18:29:06 +01:00
|
|
|
|
restartIfChanged = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
systemd.services."serial-getty@" =
|
2017-07-16 19:28:02 +02:00
|
|
|
|
let speeds = concatStringsSep "," (map toString config.services.mingetty.serialSpeed); in
|
|
|
|
|
{ serviceConfig.ExecStart = [
|
|
|
|
|
"" # override upstream default with an empty ExecStart
|
|
|
|
|
(gettyCmd "%I ${speeds} $TERM")
|
|
|
|
|
];
|
2014-04-16 16:10:11 +02:00
|
|
|
|
restartIfChanged = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
systemd.services."container-getty@" =
|
2017-08-13 19:07:38 +02:00
|
|
|
|
{ serviceConfig.ExecStart = [
|
|
|
|
|
"" # override upstream default with an empty ExecStart
|
|
|
|
|
(gettyCmd "--noclear --keep-baud pts/%I 115200,38400,9600 $TERM")
|
|
|
|
|
];
|
2014-03-12 18:29:06 +01:00
|
|
|
|
restartIfChanged = false;
|
|
|
|
|
};
|
2012-07-20 17:36:09 +02:00
|
|
|
|
|
2014-08-25 02:45:11 +02:00
|
|
|
|
systemd.services."console-getty" =
|
2017-08-13 19:07:38 +02:00
|
|
|
|
{ serviceConfig.ExecStart = [
|
|
|
|
|
"" # override upstream default with an empty ExecStart
|
|
|
|
|
(gettyCmd "--noclear --keep-baud console 115200,38400,9600 $TERM")
|
|
|
|
|
];
|
2014-08-25 02:45:11 +02:00
|
|
|
|
serviceConfig.Restart = "always";
|
|
|
|
|
restartIfChanged = false;
|
2015-09-18 18:50:48 +02:00
|
|
|
|
enable = mkDefault config.boot.isContainer;
|
2014-08-25 02:45:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
environment.etc = singleton
|
|
|
|
|
{ # Friendly greeting on the virtual consoles.
|
2012-08-06 21:53:04 +02:00
|
|
|
|
source = pkgs.writeText "issue" ''
|
|
|
|
|
|
|
|
|
|
[1;32m${config.services.mingetty.greetingLine}[0m
|
|
|
|
|
${config.services.mingetty.helpLine}
|
|
|
|
|
|
|
|
|
|
'';
|
2009-05-28 13:34:46 +02:00
|
|
|
|
target = "issue";
|
2009-07-16 15:55:11 +02:00
|
|
|
|
};
|
2012-06-18 23:58:31 +02:00
|
|
|
|
|
2009-07-16 15:55:11 +02:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2006-11-19 21:07:45 +01:00
|
|
|
|
}
|