nixpkgs/nixos/modules/services/networking/charybdis.nix

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

115 lines
2.5 KiB
Nix
Raw Normal View History

2015-05-09 19:35:29 +00: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";
2015-05-09 19:35:29 +00:00
config = mkOption {
type = types.str;
description = ''
2015-05-09 19:35:29 +00:00
Charybdis IRC daemon configuration file.
'';
};
statedir = mkOption {
type = types.path;
2015-05-09 19:35:29 +00:00
default = "/var/lib/charybdis";
description = ''
2015-05-09 19:35:29 +00:00
Location of the state directory of charybdis.
'';
};
user = mkOption {
type = types.str;
2015-05-09 19:35:29 +00:00
default = "ircd";
description = ''
2015-05-09 19:35:29 +00:00
Charybdis IRC daemon user.
'';
};
group = mkOption {
type = types.str;
2015-05-09 19:35:29 +00:00
default = "ircd";
description = ''
2015-05-09 19:35:29 +00:00
Charybdis IRC daemon group.
'';
};
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 19:35:29 +00:00
};
};
###### implementation
config = mkIf cfg.enable (lib.mkMerge [
{
users.users.${cfg.user} = {
description = "Charybdis IRC daemon user";
uid = config.ids.uids.ircd;
group = cfg.group;
2015-05-09 19:35:29 +00:00
};
users.groups.${cfg.group} = {
gid = config.ids.gids.ircd;
};
2015-05-09 19:35:29 +00:00
2024-01-11 21:10:18 +00:00
systemd.tmpfiles.settings."10-charybdis".${cfg.statedir}.d = {
inherit (cfg) user group;
};
environment.etc."charybdis/ircd.conf".source = configFile;
systemd.services.charybdis = {
description = "Charybdis IRC daemon";
wantedBy = [ "multi-user.target" ];
reloadIfChanged = true;
restartTriggers = [
configFile
];
environment = {
BANDB_DBPATH = "${cfg.statedir}/ban.db";
};
serviceConfig = {
ExecStart = "${charybdis}/bin/charybdis -foreground -logfile /dev/stdout -configfile /etc/charybdis/ircd.conf";
ExecReload = "${coreutils}/bin/kill -HUP $MAINPID";
Group = cfg.group;
User = cfg.user;
};
};
2015-05-09 19:35:29 +00:00
}
(mkIf (cfg.motd != null) {
environment.etc."charybdis/ircd.motd".text = cfg.motd;
})
]);
2015-05-09 19:35:29 +00:00
}