mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 12:45:27 +03:00

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-builda08b3a4d19
.tar.gz \ --argstr baseRev57b193d8dd
result/bin/apply-formatting $NIXPKGS_PATH
126 lines
2.6 KiB
Nix
126 lines
2.6 KiB
Nix
{
|
|
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 {
|
|
type = types.str;
|
|
description = ''
|
|
Charybdis IRC daemon configuration file.
|
|
'';
|
|
};
|
|
|
|
statedir = mkOption {
|
|
type = types.path;
|
|
default = "/var/lib/charybdis";
|
|
description = ''
|
|
Location of the state directory of charybdis.
|
|
'';
|
|
};
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
default = "ircd";
|
|
description = ''
|
|
Charybdis IRC daemon user.
|
|
'';
|
|
};
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
default = "ircd";
|
|
description = ''
|
|
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.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable (
|
|
lib.mkMerge [
|
|
{
|
|
users.users.${cfg.user} = {
|
|
description = "Charybdis IRC daemon user";
|
|
uid = config.ids.uids.ircd;
|
|
group = cfg.group;
|
|
};
|
|
|
|
users.groups.${cfg.group} = {
|
|
gid = config.ids.gids.ircd;
|
|
};
|
|
|
|
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;
|
|
};
|
|
};
|
|
|
|
}
|
|
|
|
(mkIf (cfg.motd != null) {
|
|
environment.etc."charybdis/ircd.motd".text = cfg.motd;
|
|
})
|
|
]
|
|
);
|
|
}
|