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 = ""; }; };