2009-10-12 17:36:19 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-03-06 12:26:24 +00:00
|
|
|
|
|
|
|
let
|
2009-10-12 17:36:19 +01:00
|
|
|
|
2013-03-29 09:28:54 +00:00
|
|
|
cfg = config.services.bitlbee;
|
2009-10-12 17:36:19 +01:00
|
|
|
bitlbeeUid = config.ids.uids.bitlbee;
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2013-03-29 09:28:54 +00:00
|
|
|
authModeCheck = v:
|
|
|
|
v == "Open" ||
|
|
|
|
v == "Closed" ||
|
|
|
|
v == "Registered";
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2009-03-06 12:26:24 +00:00
|
|
|
|
|
|
|
options = {
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
services.bitlbee = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2012-03-12 13:10:13 +00:00
|
|
|
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.
|
|
|
|
'';
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2009-03-06 12:26:24 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
interface = mkOption {
|
2012-03-12 13:10:13 +00:00
|
|
|
default = "127.0.0.1";
|
|
|
|
description = ''
|
|
|
|
The interface the BitlBee deamon 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.
|
|
|
|
'';
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2009-03-06 12:26:24 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
portNumber = mkOption {
|
2012-03-12 13:10:13 +00:00
|
|
|
default = 6667;
|
|
|
|
description = ''
|
|
|
|
Number of the port BitlBee will be listening to.
|
|
|
|
'';
|
2009-03-06 12:26:24 +00:00
|
|
|
};
|
|
|
|
|
2013-03-29 09:28:54 +00:00
|
|
|
user = mkOption {
|
|
|
|
default = "bitlbee";
|
|
|
|
description = ''
|
|
|
|
The user that executes the BitlBee daemon.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
authMode = mkOption {
|
|
|
|
default = "Open";
|
|
|
|
check = authModeCheck;
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
configDir = mkOption {
|
|
|
|
default = "/var/lib/bitlbee";
|
|
|
|
description = ''
|
|
|
|
Specifyies the directory that stores all the per-user configuration files.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraSettings = mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Will be inserted in the Settings section of the config file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraDefaults = mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Will be inserted in the Default section of the config file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2008-03-26 16:42:57 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-03-06 12:26:24 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
###### implementation
|
2009-03-06 12:26:24 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
config = mkIf config.services.bitlbee.enable {
|
2008-03-26 16:42:57 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
users.extraUsers = singleton
|
2013-03-29 09:28:54 +00:00
|
|
|
{ name = "${cfg.user}";
|
2012-03-12 13:10:13 +00:00
|
|
|
uid = bitlbeeUid;
|
|
|
|
description = "BitlBee user";
|
|
|
|
home = "/var/empty";
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
users.extraGroups = singleton
|
2013-03-29 09:28:54 +00:00
|
|
|
{ name = "${cfg.user}";
|
2012-03-12 13:10:13 +00:00
|
|
|
gid = config.ids.gids.bitlbee;
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2009-03-06 12:26:24 +00:00
|
|
|
|
2013-03-29 09:28:54 +00:00
|
|
|
systemd.services.bitlbee =
|
2009-10-12 17:36:19 +01:00
|
|
|
{ description = "BitlBee IRC to other chat networks gateway";
|
2013-03-29 09:28:54 +00:00
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart =
|
2012-03-12 13:10:13 +00:00
|
|
|
''
|
2013-03-29 09:28:54 +00:00
|
|
|
if ! test -d ${cfg.configDir}
|
|
|
|
then
|
|
|
|
mkdir -p ${cfg.configDir}
|
|
|
|
chown ${cfg.user}:${cfg.user} ${cfg.configDir}
|
|
|
|
chmod 750 ${cfg.configDir}
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
serviceConfig.ExecStart = "${pkgs.bitlbee}/sbin/bitlbee -F -n -c /etc/bitlbee.conf";
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.bitlbee ];
|
2009-05-29 15:25:56 +01:00
|
|
|
|
2013-03-29 09:28:54 +00:00
|
|
|
environment.etc =
|
|
|
|
[
|
|
|
|
{ source = pkgs.writeText "bitlbee.conf"
|
|
|
|
''
|
|
|
|
[settings]
|
|
|
|
RunMode = Daemon
|
|
|
|
User = ${cfg.user}
|
|
|
|
DaemonInterface = ${cfg.interface}
|
|
|
|
DaemonPort = ${toString cfg.portNumber}
|
|
|
|
AuthMode = ${cfg.authMode}
|
|
|
|
ConfigDir = ${cfg.configDir}
|
|
|
|
${cfg.extraSettings}
|
|
|
|
[defaults]
|
|
|
|
${cfg.extraDefaults}
|
|
|
|
'';
|
|
|
|
target = "bitlbee.conf";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2008-02-18 09:15:10 +00:00
|
|
|
}
|