services/misc/nixos-manual.nix: Remove

Running the manual on a TTY is useless in the graphical ISOs and not
particularly useful in non-graphical ISOs (since you can also run
'nixos-help').

Fixes #83157.
This commit is contained in:
Eelco Dolstra 2020-03-23 10:29:12 +01:00
parent 50281a823f
commit aebf9a4709
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
5 changed files with 2 additions and 80 deletions

View file

@ -218,9 +218,7 @@ in
++ optionals config.services.xserver.enable [ desktopItem pkgs.nixos-icons ]);
services.mingetty.helpLine = mkIf cfg.doc.enable (
"\nRun `nixos-help` "
+ optionalString config.services.nixosManual.showManual "or press <Alt-F${toString config.services.nixosManual.ttyNumber}> "
+ "for the NixOS manual."
"\nRun 'nixos-help' for the NixOS manual."
);
})