nixos/modules: use defaultText where applicable

Primarily to fix rendering of these default values in the manual but
it's also nice to avoid having to eval these things just to build the
manual.
This commit is contained in:
Joachim Fasting 2016-11-21 16:26:03 +01:00
parent d69dce080d
commit f9f354faad
No known key found for this signature in database
GPG key ID: 7544761007FE4E08
14 changed files with 23 additions and 2 deletions

View file

@ -34,6 +34,7 @@ in
package = mkOption {
default = pkgs.jdk;
defaultText = "pkgs.jdk";
description = ''
Java package to install. Typical values are pkgs.jdk or pkgs.jre.
'';