2009-10-12 18:36:19 +02:00
|
|
|
{ config, pkgs, servicesPath, ... }:
|
2009-03-06 13:26:55 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
with pkgs.lib;
|
2009-03-06 13:26:55 +01:00
|
|
|
|
|
|
|
let
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2009-03-06 13:26:55 +01:00
|
|
|
cfg = config.services.ircdHybrid;
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2009-09-27 01:04:43 +02:00
|
|
|
ircdService = import (servicesPath + /ircd-hybrid) {
|
2009-03-06 13:26:55 +01:00
|
|
|
stdenv = pkgs.stdenv;
|
|
|
|
inherit (pkgs) ircdHybrid coreutils
|
|
|
|
su iproute gnugrep procps;
|
|
|
|
serverName = cfg.serverName;
|
|
|
|
sid = cfg.sid;
|
|
|
|
description = cfg.description;
|
|
|
|
rsaKey = cfg.rsaKey;
|
|
|
|
certificate = cfg.certificate;
|
|
|
|
adminEmail = cfg.adminEmail;
|
|
|
|
extraIPs = cfg.extraIPs;
|
|
|
|
extraPort = cfg.extraPort;
|
2009-10-12 18:36:19 +02:00
|
|
|
gw6cEnabled = config.services.gw6c.enable && config.services.gw6c.autorun;
|
2009-03-06 13:26:55 +01:00
|
|
|
};
|
|
|
|
|
2007-11-09 19:49:45 +01:00
|
|
|
startingDependency = if config.services.gw6c.enable then "gw6c" else "network-interfaces";
|
2007-08-08 22:42:25 +02:00
|
|
|
|
|
|
|
in
|
2009-03-06 13:26:55 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.ircdHybrid = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Enable IRCD.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
serverName = mkOption {
|
|
|
|
default = "hades.arpa";
|
|
|
|
description = "
|
|
|
|
IRCD server name.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
sid = mkOption {
|
|
|
|
default = "0NL";
|
|
|
|
description = "
|
|
|
|
IRCD server unique ID in a net of servers.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
description = mkOption {
|
|
|
|
default = "Hybrid-7 IRC server.";
|
|
|
|
description = "
|
|
|
|
IRCD server description.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
rsaKey = mkOption {
|
|
|
|
default = null;
|
|
|
|
example = /root/certificates/irc.key;
|
|
|
|
description = "
|
|
|
|
IRCD server RSA key.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
certificate = mkOption {
|
|
|
|
default = null;
|
|
|
|
example = /root/certificates/irc.pem;
|
|
|
|
description = "
|
|
|
|
IRCD server SSL certificate. There are some limitations - read manual.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
adminEmail = mkOption {
|
|
|
|
default = "<bit-bucket@example.com>";
|
|
|
|
example = "<name@domain.tld>";
|
|
|
|
description = "
|
|
|
|
IRCD server administrator e-mail.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraIPs = mkOption {
|
|
|
|
default = [];
|
|
|
|
example = ["127.0.0.1"];
|
|
|
|
description = "
|
|
|
|
Extra IP's to bind.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraPort = mkOption {
|
|
|
|
default = "7117";
|
|
|
|
description = "
|
|
|
|
Extra port to avoid filtering.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-03-06 13:26:55 +01:00
|
|
|
};
|
2009-10-12 18:36:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.ircdHybrid.enable {
|
|
|
|
|
|
|
|
users.extraUsers = singleton
|
|
|
|
{ name = "ircd";
|
|
|
|
description = "IRCD owner";
|
|
|
|
};
|
|
|
|
|
|
|
|
users.extraGroups = singleton
|
|
|
|
{ name = "ircd"; };
|
|
|
|
|
2009-10-12 20:09:34 +02:00
|
|
|
jobs.ircd_hybrid =
|
2009-10-12 18:36:19 +02:00
|
|
|
{ # name = "ircd-hybrid"; !!! mkIf bug
|
|
|
|
|
|
|
|
description = "IRCD Hybrid server";
|
|
|
|
|
2009-11-06 23:19:17 +01:00
|
|
|
startOn = "started ${startingDependency}";
|
|
|
|
stopOn = "stopping ${startingDependency}";
|
2009-10-12 18:36:19 +02:00
|
|
|
|
|
|
|
exec = "${ircdService}/bin/control start";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2007-08-08 22:42:25 +02:00
|
|
|
}
|