From 6aa4120f3abd71d98d61891e43ffc6553202807e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 6 Jun 2012 23:14:57 +0000 Subject: [PATCH] * Shorten the greeting line to make it fit on a 80-character terminal again by removing the kernel version. svn path=/nixos/trunk/; revision=34376 --- modules/services/ttys/mingetty.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/ttys/mingetty.nix b/modules/services/ttys/mingetty.nix index 91a00908385f..85db3f8966e1 100644 --- a/modules/services/ttys/mingetty.nix +++ b/modules/services/ttys/mingetty.nix @@ -31,7 +31,7 @@ with pkgs.lib; }; greetingLine = mkOption { - default = ''<<< Welcome to NixOS ${config.system.nixosVersion} (\m) - \s \r (\l) >>>''; + default = ''<<< Welcome to NixOS ${config.system.nixosVersion} (\m) - \l >>>''; description = '' Welcome line printed by mingetty. '';