https://github.com/NixOS/nixpkgs/pull/480686 made getty unconditional, fixing several bugs and bad interactions. This imposes no runtime costs due to lazy systemd-based activation, but it does drag getty and its closure in to images. For many NixOS installations, this is fine - they want console login and such anyway - but it's a burden on lights-out containers aiming for minimal image sizes. This change adds a new configuration knob to totally disable getty for these sorts of headless/lights-out/appliance-style set-ups. The option's description is deliberately made stern to hopefully dissuade anyone from toggling it if their system isn't in that class. As the option defaults to enabling getty, there should be no behaviour change for anyone not explicitly opting themselves in - hopefully with full knowledge of the consequences. My local testing chopped a whole 15% off one of my images by being able to remove getty (the big contributor being util-linux and its friends), and that's just for one random image - others might be even bigger relative gains. I think that's more than enough to justify this configuration knob. I had a look for uses of getty in NixOS to see if anywhere wanted to either have a hard dependency on getty and hence explicitly enable it (so that weird configurations get picked up at evaluation time rather than runtime) or disable it. The use sites fall into two categories: 0. Virtualised set-ups that wire up units to getty listening on ttyS0. These probably don't want a hard dependency: it's reasonable to run these lights-out, and just disabling getty will DTRT here. 1. `modules/profiles/headless.nix`, which disables some of the getty units. This _could_ instead disable getty as a whole, but that might break e.g. `machinectl shell`, and I can imagine set-ups where you want that even without console login, so I have left it alone. Maybe someone else feels differently and more strongly, and then that someone else can put together a PR and argue their case.
231 lines
6.5 KiB
Nix
231 lines
6.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.getty;
|
|
|
|
baseArgs = [
|
|
"--login-program"
|
|
"${cfg.loginProgram}"
|
|
"--issue-file"
|
|
"/etc/issue:/etc/issue.d:/run/issue:/run/issue.d"
|
|
]
|
|
++ optionals (cfg.autologinUser != null && !cfg.autologinOnce) [
|
|
"--autologin"
|
|
cfg.autologinUser
|
|
]
|
|
++ optionals (cfg.loginOptions != null) [
|
|
"--login-options"
|
|
cfg.loginOptions
|
|
]
|
|
++ cfg.extraArgs;
|
|
|
|
gettyCmd = args: "${lib.getExe' pkgs.util-linux "agetty"} ${escapeShellArgs baseArgs} ${args}";
|
|
|
|
autologinScript = ''
|
|
otherArgs="--noclear --keep-baud $TTY 115200,38400,9600 $TERM";
|
|
${lib.optionalString cfg.autologinOnce ''
|
|
autologged="/run/agetty.autologged"
|
|
if test "$TTY" = tty1 && ! test -f "$autologged"; then
|
|
touch "$autologged"
|
|
exec ${gettyCmd "$otherArgs --autologin ${cfg.autologinUser}"}
|
|
fi
|
|
''}
|
|
exec ${gettyCmd "$otherArgs"}
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
imports = [
|
|
(mkRenamedOptionModule [ "services" "mingetty" ] [ "services" "getty" ])
|
|
(mkRemovedOptionModule [ "services" "getty" "serialSpeed" ]
|
|
''set non-standard baudrates with `boot.kernelParams` i.e. boot.kernelParams = ["console=ttyS2,1500000"];''
|
|
)
|
|
];
|
|
|
|
options = {
|
|
|
|
services.getty = {
|
|
|
|
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.
|
|
'';
|
|
};
|
|
|
|
autologinOnce = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
If enabled the automatic login will only happen in the first tty
|
|
once per boot. This can be useful to avoid retyping the account
|
|
password on systems with full disk encrypted.
|
|
'';
|
|
};
|
|
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Include getty in the system.
|
|
|
|
getty is quiescent until called into action and does not have
|
|
runtime costs if it is not used. The benefit of disabling it is
|
|
in reducing closure size.
|
|
|
|
Disabling getty means that console login may not be possible,
|
|
`machinectl shell` and `login` may not work, and other ills.
|
|
It is only recommended for lights-out, headless containers,
|
|
appliances, and similar configurations not meant for any human
|
|
interaction ever.
|
|
'';
|
|
};
|
|
|
|
loginProgram = mkOption {
|
|
type = types.path;
|
|
default = "${pkgs.shadow}/bin/login";
|
|
defaultText = literalExpression ''"''${pkgs.shadow}/bin/login"'';
|
|
description = ''
|
|
Path to the login binary executed by agetty.
|
|
'';
|
|
};
|
|
|
|
loginOptions = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = ''
|
|
Template for arguments to be passed to
|
|
{manpage}`login(1)`.
|
|
|
|
See {manpage}`agetty(1)` for details,
|
|
including security considerations. If unspecified, agetty
|
|
will not be invoked with a {option}`--login-options`
|
|
option.
|
|
'';
|
|
example = "-h darkstar -- \\u";
|
|
};
|
|
|
|
extraArgs = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
description = ''
|
|
Additional arguments passed to agetty.
|
|
'';
|
|
example = [ "--nohostname" ];
|
|
};
|
|
|
|
greetingLine = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
Welcome line printed by agetty.
|
|
The default shows current NixOS version label, machine type and tty.
|
|
'';
|
|
};
|
|
|
|
helpLine = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
description = ''
|
|
Help line printed by agetty below the welcome line.
|
|
Used by the installation CD to give some hints on
|
|
how to proceed.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
# Note: this is set here rather than up there so that changing
|
|
# nixos.label would not rebuild manual pages
|
|
services.getty.greetingLine = mkDefault ''<<< Welcome to ${config.system.nixos.distroName} ${config.system.nixos.label} (\m) - \l >>>'';
|
|
services.getty.helpLine = mkIf (
|
|
config.documentation.nixos.enable && config.documentation.doc.enable
|
|
) "\nRun 'nixos-help' for the NixOS manual.";
|
|
|
|
systemd.additionalUpstreamSystemUnits = [
|
|
"getty.target"
|
|
"getty-pre.target"
|
|
"getty@.service"
|
|
"serial-getty@.service"
|
|
"console-getty.service"
|
|
"container-getty@.service"
|
|
];
|
|
|
|
# We can't just rely on 'Conflicts=autovt@tty1.service' because
|
|
# 'switch-to-configuration switch' will start 'autovt@tty1.service'
|
|
# and kill the display manager.
|
|
systemd.targets.getty.wants = lib.mkIf (!config.services.displayManager.enable) [
|
|
"autovt@tty1.service"
|
|
];
|
|
|
|
systemd.services."getty@" = {
|
|
serviceConfig.ExecStart = [
|
|
# override upstream default with an empty ExecStart
|
|
""
|
|
(pkgs.writers.writeDash "getty" autologinScript)
|
|
];
|
|
environment.TTY = "%I";
|
|
restartIfChanged = false;
|
|
# logind hardcodes spawning autovt@ttyN.service on VT switch. Upstream
|
|
# declares this alias via [Install] Alias=, which NixOS does not process.
|
|
aliases = [ "autovt@.service" ];
|
|
};
|
|
|
|
systemd.services."serial-getty@" = {
|
|
serviceConfig.ExecStart = [
|
|
"" # override upstream default with an empty ExecStart
|
|
(gettyCmd "%I --keep-baud $TERM")
|
|
];
|
|
restartIfChanged = false;
|
|
};
|
|
|
|
systemd.services."container-getty@" = {
|
|
serviceConfig.ExecStart = [
|
|
"" # override upstream default with an empty ExecStart
|
|
(gettyCmd "--noclear --keep-baud pts/%I 115200,38400,9600 $TERM")
|
|
];
|
|
restartIfChanged = false;
|
|
};
|
|
|
|
systemd.services.console-getty = {
|
|
serviceConfig.ExecStart = [
|
|
"" # override upstream default with an empty ExecStart
|
|
(gettyCmd "--noclear --keep-baud console 115200,38400,9600 $TERM")
|
|
];
|
|
serviceConfig.Restart = "always";
|
|
restartIfChanged = false;
|
|
enable = mkDefault config.boot.isContainer;
|
|
};
|
|
|
|
environment.etc.issue = mkDefault {
|
|
# Friendly greeting on the virtual consoles.
|
|
source = pkgs.writeText "issue" ''
|
|
|
|
[1;32m${config.services.getty.greetingLine}[0m
|
|
${config.services.getty.helpLine}
|
|
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
meta.maintainers = with maintainers; [ RossComputerGuy ];
|
|
}
|