Merge pull request #15243 from sindikat/patch-1

update docs for services.dictd.* config options
This commit is contained in:
Joachim Fasting 2016-05-07 16:44:41 +02:00
commit 5b90702cd6

View File

@ -11,6 +11,7 @@ with lib;
services.dictd = { services.dictd = {
enable = mkOption { enable = mkOption {
type = types.bool;
default = false; default = false;
description = '' description = ''
Whether to enable the DICT.org dictionary server. Whether to enable the DICT.org dictionary server.
@ -18,8 +19,9 @@ with lib;
}; };
DBs = mkOption { DBs = mkOption {
type = types.listOf types.package;
default = []; default = [];
# example = [ pkgs.dictDBs.nld2eng ]; example = [ pkgs.dictdDBs.nld2eng ];
description = ''List of databases to make available.''; description = ''List of databases to make available.'';
}; };