about summary refs log tree commit diff
path: root/modules/services/ttys
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-10-29 20:29:25 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-10-29 21:10:00 +0100
commit47648483141c16efb9887d8af27871cee20d25ad (patch)
treedc130cacf5a9220c15a8a533b155f99d14e6439e /modules/services/ttys
parentb1fefb8834f94132106423298079ff66775c1278 (diff)
downloadnixlib-47648483141c16efb9887d8af27871cee20d25ad.tar
nixlib-47648483141c16efb9887d8af27871cee20d25ad.tar.gz
nixlib-47648483141c16efb9887d8af27871cee20d25ad.tar.bz2
nixlib-47648483141c16efb9887d8af27871cee20d25ad.tar.lz
nixlib-47648483141c16efb9887d8af27871cee20d25ad.tar.xz
nixlib-47648483141c16efb9887d8af27871cee20d25ad.tar.zst
nixlib-47648483141c16efb9887d8af27871cee20d25ad.zip
Remove some obsolete options
Diffstat (limited to 'modules/services/ttys')
-rw-r--r--modules/services/ttys/agetty.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/services/ttys/agetty.nix b/modules/services/ttys/agetty.nix
index f79962c13650..444d04564a97 100644
--- a/modules/services/ttys/agetty.nix
+++ b/modules/services/ttys/agetty.nix
@@ -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 = ''