From 9195b1125f37d9ab57383f94f20231e675356a5b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 22 Apr 2012 23:35:34 +0000 Subject: [PATCH] * Include the version number in the mingetty greeting line. svn path=/nixos/trunk/; revision=33884 --- 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 550d94c4cea..91a00908385 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 (\m) - \s \r (\l) >>>''; + default = ''<<< Welcome to NixOS ${config.system.nixosVersion} (\m) - \s \r (\l) >>>''; description = '' Welcome line printed by mingetty. '';