python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / misc / dictd.nix
blob4b714b84f3b20b77fcccf0818f3ffb0179f9a0ed
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.dictd;
7 in
11   ###### interface
13   options = {
15     services.dictd = {
17       enable = mkOption {
18         type = types.bool;
19         default = false;
20         description = lib.mdDoc ''
21           Whether to enable the DICT.org dictionary server.
22         '';
23       };
25       DBs = mkOption {
26         type = types.listOf types.package;
27         default = with pkgs.dictdDBs; [ wiktionary wordnet ];
28         defaultText = literalExpression "with pkgs.dictdDBs; [ wiktionary wordnet ]";
29         example = literalExpression "[ pkgs.dictdDBs.nld2eng ]";
30         description = lib.mdDoc "List of databases to make available.";
31       };
33     };
35   };
38   ###### implementation
40   config = let dictdb = pkgs.dictDBCollector { dictlist = map (x: {
41                name = x.name;
42                filename = x; } ) cfg.DBs; };
43   in mkIf cfg.enable {
45     # get the command line client on system path to make some use of the service
46     environment.systemPackages = [ pkgs.dict ];
48     environment.etc."dict.conf".text = ''
49       server localhost
50     '';
52     users.users.dictd =
53       { group = "dictd";
54         description = "DICT.org dictd server";
55         home = "${dictdb}/share/dictd";
56         uid = config.ids.uids.dictd;
57       };
59     users.groups.dictd.gid = config.ids.gids.dictd;
61     systemd.services.dictd = {
62       description = "DICT.org Dictionary Server";
63       wantedBy = [ "multi-user.target" ];
64       environment = { LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive"; };
65       serviceConfig.Type = "forking";
66       script = "${pkgs.dict}/sbin/dictd -s -c ${dictdb}/share/dictd/dictd.conf --locale en_US.UTF-8";
67     };
68   };