summary refs log tree commit diff
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2016-10-19 08:35:37 +0200
committerEdward Tjörnhammar <ed@cflags.cc>2016-10-19 08:43:30 +0200
commiteacb020a0c02a86f0fa89d33549a91bedca8ccfa (patch)
tree312185ad7f5ca9f51f1e9a39134aadaeed1eab41
parent642366d103a458079a46d3a3943c71eddbcf0cbb (diff)
downloadnixpkgs-eacb020a0c02a86f0fa89d33549a91bedca8ccfa.tar
nixpkgs-eacb020a0c02a86f0fa89d33549a91bedca8ccfa.tar.gz
nixpkgs-eacb020a0c02a86f0fa89d33549a91bedca8ccfa.tar.bz2
nixpkgs-eacb020a0c02a86f0fa89d33549a91bedca8ccfa.tar.lz
nixpkgs-eacb020a0c02a86f0fa89d33549a91bedca8ccfa.tar.xz
nixpkgs-eacb020a0c02a86f0fa89d33549a91bedca8ccfa.tar.zst
nixpkgs-eacb020a0c02a86f0fa89d33549a91bedca8ccfa.zip
nixos: dictd, make wiktionary and wordnet default dicts
-rw-r--r--nixos/modules/services/misc/dictd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/dictd.nix b/nixos/modules/services/misc/dictd.nix
index 17c5e331547..24dca15dd91 100644
--- a/nixos/modules/services/misc/dictd.nix
+++ b/nixos/modules/services/misc/dictd.nix
@@ -24,7 +24,7 @@ in
 
       DBs = mkOption {
         type = types.listOf types.package;
-        default = [];
+        default = with pkgs.dictdDBs; [ wiktionary wordnet ];
         example = [ pkgs.dictdDBs.nld2eng ];
         description = ''List of databases to make available.'';
       };