1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-27 11:36:29 +03:00
nixpkgs/nixos/modules/services/networking/ircd-hybrid/default.nix

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

159 lines
3.2 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.services.ircdHybrid;
ircdService = pkgs.stdenv.mkDerivation rec {
name = "ircd-hybrid-service";
scripts = [
"=>/bin"
./control.in
];
substFiles = [
"=>/conf"
./ircd.conf
];
2021-03-14 17:05:16 +01:00
inherit (pkgs)
ircdHybrid
coreutils
su
iproute2
gnugrep
procps
;
2017-04-11 18:08:51 +02:00
ipv6Enabled = boolToString config.networking.enableIPv6;
inherit (cfg)
serverName
sid
description
adminEmail
extraPort
;
cryptoSettings =
(optionalString (cfg.rsaKey != null) "rsa_private_key_file = \"${cfg.rsaKey}\";\n")
+ (optionalString (cfg.certificate != null) "ssl_certificate_file = \"${cfg.certificate}\";\n");
extraListen = map (
ip: "host = \"" + ip + "\";\nport = 6665 .. 6669, " + extraPort + "; "
) cfg.extraIPs;
builder = ./builder.sh;
};
in
{
###### interface
options = {
services.ircdHybrid = {
enable = mkEnableOption "IRCD";
serverName = mkOption {
default = "hades.arpa";
2021-01-31 11:17:03 +01:00
type = types.str;
description = ''
IRCD server name.
'';
};
sid = mkOption {
default = "0NL";
2021-01-31 11:17:03 +01:00
type = types.str;
description = ''
IRCD server unique ID in a net of servers.
'';
};
description = mkOption {
default = "Hybrid-7 IRC server.";
2021-01-31 11:17:03 +01:00
type = types.str;
description = ''
IRCD server description.
'';
};
rsaKey = mkOption {
default = null;
example = literalExpression "/root/certificates/irc.key";
2021-01-31 11:17:03 +01:00
type = types.nullOr types.path;
description = ''
IRCD server RSA key.
'';
};
certificate = mkOption {
default = null;
example = literalExpression "/root/certificates/irc.pem";
2021-01-31 11:17:03 +01:00
type = types.nullOr types.path;
description = ''
IRCD server SSL certificate. There are some limitations - read manual.
'';
};
adminEmail = mkOption {
default = "<bit-bucket@example.com>";
2021-01-31 11:17:03 +01:00
type = types.str;
example = "<name@domain.tld>";
description = ''
IRCD server administrator e-mail.
'';
};
extraIPs = mkOption {
default = [ ];
example = [ "127.0.0.1" ];
2021-01-31 11:17:03 +01:00
type = types.listOf types.str;
description = ''
Extra IP's to bind.
'';
};
extraPort = mkOption {
default = "7117";
2021-01-31 11:17:03 +01:00
type = types.str;
description = ''
Extra port to avoid filtering.
'';
};
};
};
###### implementation
config = mkIf config.services.ircdHybrid.enable {
users.users.ircd = {
description = "IRCD owner";
group = "ircd";
uid = config.ids.uids.ircd;
};
users.groups.ircd.gid = config.ids.gids.ircd;
2019-08-13 21:52:01 +00:00
systemd.services.ircd-hybrid = {
2016-01-06 06:50:18 +00:00
description = "IRCD Hybrid server";
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
2016-01-06 06:50:18 +00:00
wantedBy = [ "multi-user.target" ];
script = "${ircdService}/bin/control start";
};
};
}