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