nixpkgs/nixos/modules/services/misc/dictd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.7 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2012-10-27 21:11:54 +00:00
with lib;
2012-10-27 21:11:54 +00:00
let
cfg = config.services.dictd;
in
2012-10-27 21:11:54 +00:00
{
###### interface
options = {
services.dictd = {
enable = mkOption {
type = types.bool;
2012-10-27 21:11:54 +00:00
default = false;
description = ''
2012-10-27 21:11:54 +00:00
Whether to enable the DICT.org dictionary server.
'';
};
DBs = mkOption {
type = types.listOf types.package;
default = with pkgs.dictdDBs; [ wiktionary wordnet ];
defaultText = literalExpression "with pkgs.dictdDBs; [ wiktionary wordnet ]";
example = literalExpression "[ pkgs.dictdDBs.nld2eng ]";
description = "List of databases to make available.";
2012-10-27 21:11:54 +00:00
};
};
};
###### implementation
config = let dictdb = pkgs.dictDBCollector { dictlist = map (x: {
name = x.name;
filename = x; } ) cfg.DBs; };
in mkIf cfg.enable {
2012-10-27 21:11:54 +00:00
# get the command line client on system path to make some use of the service
environment.systemPackages = [ pkgs.dict ];
environment.etc."dict.conf".text = ''
server localhost
'';
users.users.dictd =
{ group = "dictd";
2012-10-27 21:11:54 +00:00
description = "DICT.org dictd server";
home = "${dictdb}/share/dictd";
uid = config.ids.uids.dictd;
2012-10-27 21:11:54 +00:00
};
users.groups.dictd.gid = config.ids.gids.dictd;
2012-10-27 21:11:54 +00:00
2016-01-06 06:50:18 +00:00
systemd.services.dictd = {
description = "DICT.org Dictionary Server";
wantedBy = [ "multi-user.target" ];
environment = { LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive"; };
serviceConfig.Type = "forking";
script = "${pkgs.dict}/sbin/dictd -s -c ${dictdb}/share/dictd/dictd.conf --locale en_US.UTF-8";
};
2012-10-27 21:11:54 +00:00
};
}