2009-10-12 18:36:19 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-03-06 13:26:24 +01:00
|
|
|
|
|
|
|
let
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2013-03-29 10:28:54 +01:00
|
|
|
cfg = config.services.bitlbee;
|
2009-10-12 18:36:19 +02:00
|
|
|
bitlbeeUid = config.ids.uids.bitlbee;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2013-03-29 10:28:54 +01:00
|
|
|
authModeCheck = v:
|
|
|
|
v == "Open" ||
|
|
|
|
v == "Closed" ||
|
|
|
|
v == "Registered";
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2013-04-01 23:26:36 +02:00
|
|
|
bitlbeeConfig = pkgs.writeText "bitlbee.conf"
|
|
|
|
''
|
|
|
|
[settings]
|
|
|
|
RunMode = Daemon
|
|
|
|
User = bitlbee
|
|
|
|
ConfigDir = /var/lib/bitlbee
|
|
|
|
DaemonInterface = ${cfg.interface}
|
|
|
|
DaemonPort = ${toString cfg.portNumber}
|
|
|
|
AuthMode = ${cfg.authMode}
|
|
|
|
${cfg.extraSettings}
|
|
|
|
|
|
|
|
[defaults]
|
|
|
|
${cfg.extraDefaults}
|
|
|
|
'';
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2009-03-06 13:26:24 +01:00
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
services.bitlbee = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2013-03-29 12:51:47 +01: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 18:36:19 +02:00
|
|
|
};
|
2009-03-06 13:26:24 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
interface = mkOption {
|
2013-03-29 12:51:47 +01: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 18:36:19 +02:00
|
|
|
};
|
2009-03-06 13:26:24 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
portNumber = mkOption {
|
2013-03-29 12:51:47 +01:00
|
|
|
default = 6667;
|
|
|
|
description = ''
|
|
|
|
Number of the port BitlBee will be listening to.
|
|
|
|
'';
|
2009-03-06 13:26:24 +01:00
|
|
|
};
|
|
|
|
|
2013-03-29 10:28:54 +01:00
|
|
|
authMode = mkOption {
|
2013-03-29 12:51:47 +01:00
|
|
|
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.
|
|
|
|
'';
|
2013-03-29 10:28:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extraSettings = mkOption {
|
2013-03-29 12:51:47 +01:00
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Will be inserted in the Settings section of the config file.
|
|
|
|
'';
|
2013-03-29 10:28:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extraDefaults = mkOption {
|
2013-03-29 12:51:47 +01:00
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Will be inserted in the Default section of the config file.
|
|
|
|
'';
|
2013-03-29 10:28:54 +01:00
|
|
|
};
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2008-03-26 17:42:57 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
###### implementation
|
2009-03-06 13:26:24 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
config = mkIf config.services.bitlbee.enable {
|
2008-03-26 17:42:57 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
users.extraUsers = singleton
|
2013-03-29 12:37:06 +01:00
|
|
|
{ name = "bitlbee";
|
2013-03-29 12:51:47 +01:00
|
|
|
uid = bitlbeeUid;
|
|
|
|
description = "BitlBee user";
|
|
|
|
home = "/var/lib/bitlbee";
|
2013-04-01 23:26:36 +02:00
|
|
|
createHome = true;
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
users.extraGroups = singleton
|
2013-03-29 12:37:06 +01:00
|
|
|
{ name = "bitlbee";
|
2013-03-29 12:51:47 +01:00
|
|
|
gid = config.ids.gids.bitlbee;
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2009-03-06 13:26:24 +01:00
|
|
|
|
2013-03-29 10:28:54 +01:00
|
|
|
systemd.services.bitlbee =
|
2009-10-12 18:36:19 +02:00
|
|
|
{ description = "BitlBee IRC to other chat networks gateway";
|
2013-03-29 10:28:54 +01:00
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2013-04-01 23:26:36 +02:00
|
|
|
serviceConfig.User = "bitlbee";
|
|
|
|
serviceConfig.ExecStart = "${pkgs.bitlbee}/sbin/bitlbee -F -n -c ${bitlbeeConfig}";
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.bitlbee ];
|
2009-05-29 16:25:56 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2008-02-18 10:15:10 +01:00
|
|
|
}
|