nixos: dictd, make wiktionary and wordnet default dicts

This commit is contained in:
Edward Tjörnhammar
2016-10-19 08:43:30 +02:00
parent 642366d103
commit eacb020a0c
+1 -1
View File
@@ -24,7 +24,7 @@ in
DBs = mkOption { DBs = mkOption {
type = types.listOf types.package; type = types.listOf types.package;
default = []; default = with pkgs.dictdDBs; [ wiktionary wordnet ];
example = [ pkgs.dictdDBs.nld2eng ]; example = [ pkgs.dictdDBs.nld2eng ];
description = ''List of databases to make available.''; description = ''List of databases to make available.'';
}; };