mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
117 lines
3.1 KiB
Nix
117 lines
3.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.errbot;
|
|
pluginEnv =
|
|
plugins:
|
|
pkgs.buildEnv {
|
|
name = "errbot-plugins";
|
|
paths = plugins;
|
|
};
|
|
mkConfigDir =
|
|
instanceCfg: dataDir:
|
|
pkgs.writeTextDir "config.py" ''
|
|
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})
|
|
|
|
BOT_IDENTITY = ${builtins.toJSON instanceCfg.identity}
|
|
|
|
${instanceCfg.extraConfig}
|
|
'';
|
|
in
|
|
{
|
|
options = {
|
|
services.errbot.instances = lib.mkOption {
|
|
default = { };
|
|
description = "Errbot instance configs";
|
|
type = lib.types.attrsOf (
|
|
lib.types.submodule {
|
|
options = {
|
|
dataDir = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.path;
|
|
default = null;
|
|
description = "Data directory for errbot instance.";
|
|
};
|
|
|
|
plugins = lib.mkOption {
|
|
type = lib.types.listOf lib.types.package;
|
|
default = [ ];
|
|
description = "List of errbot plugin derivations.";
|
|
};
|
|
|
|
logLevel = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "INFO";
|
|
description = "Errbot log level";
|
|
};
|
|
|
|
admins = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
description = "List of identifiers of errbot admins.";
|
|
};
|
|
|
|
backend = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "XMPP";
|
|
description = "Errbot backend name.";
|
|
};
|
|
|
|
identity = lib.mkOption {
|
|
type = lib.types.attrs;
|
|
description = "Errbot identity configuration";
|
|
};
|
|
|
|
extraConfig = lib.mkOption {
|
|
type = lib.types.lines;
|
|
default = "";
|
|
description = "String to be appended to the config verbatim";
|
|
};
|
|
};
|
|
}
|
|
);
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf (cfg.instances != { }) {
|
|
users.users.errbot = {
|
|
group = "errbot";
|
|
isSystemUser = true;
|
|
};
|
|
users.groups.errbot = { };
|
|
|
|
systemd.services = lib.mapAttrs' (
|
|
name: instanceCfg:
|
|
lib.nameValuePair "errbot-${name}" (
|
|
let
|
|
dataDir = if instanceCfg.dataDir != null then instanceCfg.dataDir else "/var/lib/errbot/${name}";
|
|
in
|
|
{
|
|
after = [ "network-online.target" ];
|
|
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";
|
|
PermissionsStartOnly = true;
|
|
};
|
|
}
|
|
)
|
|
) cfg.instances;
|
|
};
|
|
}
|