From 42513650d855a58c8fb5402c2738df50ebe01b4e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 8 Jun 2009 22:44:05 +0000 Subject: [PATCH] svn path=/nixos/branches/modular-nixos/; revision=15895 --- modules/services/misc/nixos-manual.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/services/misc/nixos-manual.nix b/modules/services/misc/nixos-manual.nix index fe26591b8ba..d87e8cac57e 100644 --- a/modules/services/misc/nixos-manual.nix +++ b/modules/services/misc/nixos-manual.nix @@ -55,9 +55,7 @@ let in let - cfg = config.services.showManual; -in let # !!! Bug in Nix 0.13pre14722, otherwise the following line is not aware of cfg. - inherit (cfg) enable ttyNumber browserPackage browserCommand manualFile; + inherit (config.services.showManual) enable ttyNumber browserPackage browserCommand manualFile; realManualFile = if manualFile == null then @@ -103,7 +101,7 @@ mkIf enable { mingetty = { helpLine = mkThenElse { - thenPart = "\nPress for NixOS manual."; + thenPart = "\nPress for the NixOS manual."; elsePart = ""; }; };