1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-27 03:26:50 +03:00
nixpkgs/nixos/modules/services/networking/ircd-hybrid/default.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
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-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

158 lines
3.2 KiB
Nix

{
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
];
inherit (pkgs)
ircdHybrid
coreutils
su
iproute2
gnugrep
procps
;
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";
type = types.str;
description = ''
IRCD server name.
'';
};
sid = mkOption {
default = "0NL";
type = types.str;
description = ''
IRCD server unique ID in a net of servers.
'';
};
description = mkOption {
default = "Hybrid-7 IRC server.";
type = types.str;
description = ''
IRCD server description.
'';
};
rsaKey = mkOption {
default = null;
example = literalExpression "/root/certificates/irc.key";
type = types.nullOr types.path;
description = ''
IRCD server RSA key.
'';
};
certificate = mkOption {
default = null;
example = literalExpression "/root/certificates/irc.pem";
type = types.nullOr types.path;
description = ''
IRCD server SSL certificate. There are some limitations - read manual.
'';
};
adminEmail = mkOption {
default = "<bit-bucket@example.com>";
type = types.str;
example = "<name@domain.tld>";
description = ''
IRCD server administrator e-mail.
'';
};
extraIPs = mkOption {
default = [ ];
example = [ "127.0.0.1" ];
type = types.listOf types.str;
description = ''
Extra IP's to bind.
'';
};
extraPort = mkOption {
default = "7117";
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;
systemd.services.ircd-hybrid = {
description = "IRCD Hybrid server";
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
script = "${ircdService}/bin/control start";
};
};
}