mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +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 baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
196 lines
5.3 KiB
Nix
196 lines
5.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
|
|
cfg = config.services.bitlbee;
|
|
bitlbeeUid = config.ids.uids.bitlbee;
|
|
|
|
bitlbeePkg = pkgs.bitlbee.override {
|
|
enableLibPurple = cfg.libpurple_plugins != [ ];
|
|
enablePam = cfg.authBackend == "pam";
|
|
};
|
|
|
|
bitlbeeConfig = pkgs.writeText "bitlbee.conf" ''
|
|
[settings]
|
|
RunMode = Daemon
|
|
ConfigDir = ${cfg.configDir}
|
|
DaemonInterface = ${cfg.interface}
|
|
DaemonPort = ${toString cfg.portNumber}
|
|
AuthMode = ${cfg.authMode}
|
|
AuthBackend = ${cfg.authBackend}
|
|
Plugindir = ${pkgs.bitlbee-plugins cfg.plugins}/lib/bitlbee
|
|
${lib.optionalString (cfg.hostName != "") "HostName = ${cfg.hostName}"}
|
|
${lib.optionalString (cfg.protocols != "") "Protocols = ${cfg.protocols}"}
|
|
${cfg.extraSettings}
|
|
|
|
[defaults]
|
|
${cfg.extraDefaults}
|
|
'';
|
|
|
|
purple_plugin_path = lib.concatMapStringsSep ":" (
|
|
plugin: "${plugin}/lib/pidgin/:${plugin}/lib/purple-2/"
|
|
) cfg.libpurple_plugins;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.bitlbee = {
|
|
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to run the BitlBee IRC to other chat network gateway.
|
|
Running it allows you to access the MSN, Jabber, Yahoo! and ICQ chat
|
|
networks via an IRC client.
|
|
'';
|
|
};
|
|
|
|
interface = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "127.0.0.1";
|
|
description = ''
|
|
The interface the BitlBee daemon will be listening to. If `127.0.0.1`,
|
|
only clients on the local host can connect to it; if `0.0.0.0`, clients
|
|
can access it from any network interface.
|
|
'';
|
|
};
|
|
|
|
portNumber = lib.mkOption {
|
|
default = 6667;
|
|
type = lib.types.port;
|
|
description = ''
|
|
Number of the port BitlBee will be listening to.
|
|
'';
|
|
};
|
|
|
|
authBackend = lib.mkOption {
|
|
default = "storage";
|
|
type = lib.types.enum [
|
|
"storage"
|
|
"pam"
|
|
];
|
|
description = ''
|
|
How users are authenticated
|
|
storage -- save passwords internally
|
|
pam -- Linux PAM authentication
|
|
'';
|
|
};
|
|
|
|
authMode = lib.mkOption {
|
|
default = "Open";
|
|
type = lib.types.enum [
|
|
"Open"
|
|
"Closed"
|
|
"Registered"
|
|
];
|
|
description = ''
|
|
The following authentication modes are available:
|
|
Open -- Accept connections from anyone, use NickServ for user authentication.
|
|
Closed -- Require authorization (using the PASS command during login) before allowing the user to connect at all.
|
|
Registered -- Only allow registered users to use this server; this disables the register- and the account command until the user identifies himself.
|
|
'';
|
|
};
|
|
|
|
hostName = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Normally, BitlBee gets a hostname using getsockname(). If you have a nicer
|
|
alias for your BitlBee daemon, you can set it here and BitlBee will identify
|
|
itself with that name instead.
|
|
'';
|
|
};
|
|
|
|
plugins = lib.mkOption {
|
|
type = lib.types.listOf lib.types.package;
|
|
default = [ ];
|
|
example = lib.literalExpression "[ pkgs.bitlbee-facebook ]";
|
|
description = ''
|
|
The list of bitlbee plugins to install.
|
|
'';
|
|
};
|
|
|
|
libpurple_plugins = lib.mkOption {
|
|
type = lib.types.listOf lib.types.package;
|
|
default = [ ];
|
|
example = lib.literalExpression "[ pkgs.purple-matrix ]";
|
|
description = ''
|
|
The list of libpurple plugins to install.
|
|
'';
|
|
};
|
|
|
|
configDir = lib.mkOption {
|
|
default = "/var/lib/bitlbee";
|
|
type = lib.types.path;
|
|
description = ''
|
|
Specify an alternative directory to store all the per-user configuration
|
|
files.
|
|
'';
|
|
};
|
|
|
|
protocols = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
description = ''
|
|
This option allows to remove the support of protocol, even if compiled
|
|
in. If nothing is given, there are no restrictions.
|
|
'';
|
|
};
|
|
|
|
extraSettings = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.lines;
|
|
description = ''
|
|
Will be inserted in the Settings section of the config file.
|
|
'';
|
|
};
|
|
|
|
extraDefaults = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.lines;
|
|
description = ''
|
|
Will be inserted in the Default section of the config file.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = lib.mkMerge [
|
|
(lib.mkIf config.services.bitlbee.enable {
|
|
systemd.services.bitlbee = {
|
|
environment.PURPLE_PLUGIN_PATH = purple_plugin_path;
|
|
description = "BitlBee IRC to other chat networks gateway";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
StateDirectory = "bitlbee";
|
|
ReadWritePaths = [ cfg.configDir ];
|
|
ExecStart = "${bitlbeePkg}/sbin/bitlbee -F -n -c ${bitlbeeConfig}";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ bitlbeePkg ];
|
|
|
|
})
|
|
(lib.mkIf (config.services.bitlbee.authBackend == "pam") {
|
|
security.pam.services.bitlbee = { };
|
|
})
|
|
];
|
|
|
|
}
|