blob: 08f1f850216224c9ff47d3d3251db219a0ac40d0 (
plain)
1
2
3
4
5
6
|
{ pkgs, ... }:
{
environment.shellAliases.dict = "dict -h 127.0.0.1";
services.dictd.enable = true;
services.dictd.DBs = with pkgs.dictdDBs; [ wiktionary wordnet deu2eng eng2deu ];
}
|