2015-05-09 20:35:29 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (lib) mkEnableOption mkIf mkOption singleton types;
|
|
|
|
inherit (pkgs) coreutils charybdis;
|
|
|
|
cfg = config.services.charybdis;
|
|
|
|
|
|
|
|
configFile = pkgs.writeText "charybdis.conf" ''
|
|
|
|
${cfg.config}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.charybdis = {
|
|
|
|
|
|
|
|
enable = mkEnableOption "Charybdis IRC daemon";
|
|
|
|
|
|
|
|
config = mkOption {
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.str;
|
2015-05-09 20:35:29 +01:00
|
|
|
description = ''
|
|
|
|
Charybdis IRC daemon configuration file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
statedir = mkOption {
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.path;
|
2015-05-09 20:35:29 +01:00
|
|
|
default = "/var/lib/charybdis";
|
|
|
|
description = ''
|
|
|
|
Location of the state directory of charybdis.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
user = mkOption {
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.str;
|
2015-05-09 20:35:29 +01:00
|
|
|
default = "ircd";
|
|
|
|
description = ''
|
|
|
|
Charybdis IRC daemon user.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.str;
|
2015-05-09 20:35:29 +01:00
|
|
|
default = "ircd";
|
|
|
|
description = ''
|
|
|
|
Charybdis IRC daemon group.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-05-25 22:28:50 +01:00
|
|
|
motd = mkOption {
|
|
|
|
type = types.nullOr types.lines;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
Charybdis MOTD text.
|
|
|
|
|
|
|
|
Charybdis will read its MOTD from /etc/charybdis/ircd.motd .
|
|
|
|
If set, the value of this option will be written to this path.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-05-09 20:35:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2017-05-25 22:28:50 +01:00
|
|
|
config = mkIf cfg.enable (lib.mkMerge [
|
|
|
|
{
|
2019-09-14 18:51:29 +01:00
|
|
|
users.users.${cfg.user} = {
|
2017-05-25 22:28:50 +01:00
|
|
|
description = "Charybdis IRC daemon user";
|
|
|
|
uid = config.ids.uids.ircd;
|
|
|
|
group = cfg.group;
|
2015-05-09 20:35:29 +01:00
|
|
|
};
|
|
|
|
|
2019-09-14 18:51:29 +01:00
|
|
|
users.groups.${cfg.group} = {
|
2017-05-25 22:28:50 +01:00
|
|
|
gid = config.ids.gids.ircd;
|
|
|
|
};
|
2015-05-09 20:35:29 +01:00
|
|
|
|
2019-02-23 21:05:53 +00:00
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
"d ${cfg.statedir} - ${cfg.user} ${cfg.group} - -"
|
|
|
|
];
|
|
|
|
|
2017-05-25 22:28:50 +01:00
|
|
|
systemd.services.charybdis = {
|
|
|
|
description = "Charybdis IRC daemon";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
environment = {
|
|
|
|
BANDB_DBPATH = "${cfg.statedir}/ban.db";
|
|
|
|
};
|
|
|
|
serviceConfig = {
|
2018-10-07 12:10:50 +01:00
|
|
|
ExecStart = "${charybdis}/bin/charybdis -foreground -logfile /dev/stdout -configfile ${configFile}";
|
2017-05-25 22:28:50 +01:00
|
|
|
Group = cfg.group;
|
|
|
|
User = cfg.user;
|
|
|
|
};
|
|
|
|
};
|
2015-05-09 20:35:29 +01:00
|
|
|
|
2017-05-25 22:28:50 +01:00
|
|
|
}
|
2019-08-08 21:48:27 +01:00
|
|
|
|
2017-05-25 22:28:50 +01:00
|
|
|
(mkIf (cfg.motd != null) {
|
|
|
|
environment.etc."charybdis/ircd.motd".text = cfg.motd;
|
|
|
|
})
|
|
|
|
]);
|
2015-05-09 20:35:29 +01:00
|
|
|
}
|