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

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

118 lines
3.1 KiB
Nix
Raw Normal View History

2016-10-11 15:17:44 +02:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.errbot;
pluginEnv =
plugins:
pkgs.buildEnv {
name = "errbot-plugins";
paths = plugins;
};
mkConfigDir =
instanceCfg: dataDir:
pkgs.writeTextDir "config.py" ''
2016-10-11 15:17:44 +02:00
import logging
BACKEND = '${instanceCfg.backend}'
BOT_DATA_DIR = '${dataDir}'
BOT_EXTRA_PLUGIN_DIR = '${pluginEnv instanceCfg.plugins}'
BOT_LOG_LEVEL = logging.${instanceCfg.logLevel}
BOT_LOG_FILE = False
BOT_ADMINS = (${lib.concatMapStringsSep "," (name: "'${name}'") instanceCfg.admins})
2016-10-11 15:17:44 +02:00
BOT_IDENTITY = ${builtins.toJSON instanceCfg.identity}
${instanceCfg.extraConfig}
'';
in
{
options = {
services.errbot.instances = lib.mkOption {
2016-10-11 15:17:44 +02:00
default = { };
description = "Errbot instance configs";
type = lib.types.attrsOf (
lib.types.submodule {
2016-10-11 15:17:44 +02:00
options = {
dataDir = lib.mkOption {
type = lib.types.nullOr lib.types.path;
2016-10-11 15:17:44 +02:00
default = null;
description = "Data directory for errbot instance.";
};
plugins = lib.mkOption {
type = lib.types.listOf lib.types.package;
2016-10-11 15:17:44 +02:00
default = [ ];
description = "List of errbot plugin derivations.";
};
logLevel = lib.mkOption {
type = lib.types.str;
2016-10-11 15:17:44 +02:00
default = "INFO";
description = "Errbot log level";
};
admins = lib.mkOption {
type = lib.types.listOf lib.types.str;
2016-10-11 15:17:44 +02:00
default = [ ];
description = "List of identifiers of errbot admins.";
};
backend = lib.mkOption {
type = lib.types.str;
2016-10-11 15:17:44 +02:00
default = "XMPP";
description = "Errbot backend name.";
};
identity = lib.mkOption {
type = lib.types.attrs;
2016-10-11 15:17:44 +02:00
description = "Errbot identity configuration";
};
extraConfig = lib.mkOption {
type = lib.types.lines;
2016-10-11 15:17:44 +02:00
default = "";
description = "String to be appended to the config verbatim";
};
2016-10-11 15:17:44 +02:00
};
}
);
};
};
config = lib.mkIf (cfg.instances != { }) {
2019-10-12 22:25:28 +02:00
users.users.errbot = {
group = "errbot";
isSystemUser = true;
};
users.groups.errbot = { };
2016-10-11 15:17:44 +02:00
systemd.services = lib.mapAttrs' (
name: instanceCfg:
lib.nameValuePair "errbot-${name}" (
2016-10-11 15:17:44 +02:00
let
dataDir = if instanceCfg.dataDir != null then instanceCfg.dataDir else "/var/lib/errbot/${name}";
2016-10-11 15:17:44 +02:00
in
{
after = [ "network-online.target" ];
2016-10-11 15:17:44 +02:00
wantedBy = [ "multi-user.target" ];
preStart = ''
mkdir -p ${dataDir}
chown -R errbot:errbot ${dataDir}
'';
serviceConfig = {
User = "errbot";
Restart = "on-failure";
ExecStart = "${pkgs.errbot}/bin/errbot -c ${mkConfigDir instanceCfg dataDir}/config.py";
2016-10-11 15:17:44 +02:00
PermissionsStartOnly = true;
};
}
)
2016-10-11 15:17:44 +02:00
) cfg.instances;
};
}