mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 20:14:37 +00:00
Remove some obsolete options
This commit is contained in:
parent
b1fefb8834
commit
4764848314
@ -10,28 +10,6 @@ with pkgs.lib;
|
||||
|
||||
services.mingetty = {
|
||||
|
||||
# FIXME
|
||||
ttys = mkOption {
|
||||
default =
|
||||
if pkgs.stdenv.isArm
|
||||
then [ "ttyS0" ] # presumably an embedded platform such as a plug
|
||||
else [ "tty1" "tty2" "tty3" "tty4" "tty5" "tty6" ];
|
||||
description = ''
|
||||
The list of tty devices on which to start a login prompt.
|
||||
'';
|
||||
};
|
||||
|
||||
# FIXME: not implemented with systemd
|
||||
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 ${config.system.nixosVersion} (\m) - \l >>>'';
|
||||
description = ''
|
||||
|
@ -145,16 +145,6 @@ in
|
||||
description = "Names of supported filesystem types in the initial ramdisk.";
|
||||
};
|
||||
|
||||
boot.ttyEmergency = mkOption {
|
||||
default =
|
||||
if pkgs.stdenv.isArm
|
||||
then "ttyS0" # presumably an embedded platform such as a plug
|
||||
else "tty1";
|
||||
description = ''
|
||||
The tty that will be stopped in case an emergency shell is spawned
|
||||
at boot.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
@ -396,8 +396,6 @@ in
|
||||
VertRefresh 50-160
|
||||
'';
|
||||
|
||||
services.mingetty.ttys = ttys ++ optional (!cfg.graphics) "ttyS0";
|
||||
|
||||
# Wireless won't work in the VM.
|
||||
networking.wireless.enable = mkOverride 50 false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user