2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-06-28 18:36:37 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2010-06-28 18:36:37 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.quassel;
|
2016-11-04 15:33:47 +00:00
|
|
|
quassel = cfg.package;
|
2010-09-26 01:58:44 +00:00
|
|
|
user = if cfg.user != null then cfg.user else "quassel";
|
2010-06-28 18:36:37 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2010-06-28 18:36:37 +00:00
|
|
|
services.quassel = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to run the Quassel IRC client daemon.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-11-04 15:33:47 +00:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
2017-02-15 23:44:11 +00:00
|
|
|
default = pkgs.quasselDaemon;
|
|
|
|
defaultText = "pkgs.quasselDaemon";
|
2016-11-04 15:33:47 +00:00
|
|
|
description = ''
|
|
|
|
The package of the quassel daemon.
|
|
|
|
'';
|
2017-02-15 23:44:11 +00:00
|
|
|
example = literalExample "pkgs.quasselDaemon";
|
2016-11-04 15:33:47 +00:00
|
|
|
};
|
|
|
|
|
2015-11-09 16:53:37 +00:00
|
|
|
interfaces = mkOption {
|
|
|
|
default = [ "127.0.0.1" ];
|
2010-06-28 18:36:37 +00:00
|
|
|
description = ''
|
2015-11-09 16:53:37 +00:00
|
|
|
The interfaces the Quassel 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
|
2010-06-28 18:36:37 +00:00
|
|
|
can access it from any network interface.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
portNumber = mkOption {
|
|
|
|
default = 4242;
|
|
|
|
description = ''
|
|
|
|
The port number the Quassel daemon will be listening to.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
dataDir = mkOption {
|
2010-09-26 01:58:44 +00:00
|
|
|
default = ''/home/${user}/.config/quassel-irc.org'';
|
2010-06-28 18:36:37 +00:00
|
|
|
description = ''
|
|
|
|
The directory holding configuration files, the SQlite database and the SSL Cert.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
user = mkOption {
|
2010-09-26 01:58:44 +00:00
|
|
|
default = null;
|
2010-06-28 18:36:37 +00:00
|
|
|
description = ''
|
2010-09-26 01:58:44 +00:00
|
|
|
The existing user the Quassel daemon should run as. If left empty, a default "quassel" user will be created.
|
2010-06-28 18:36:37 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2010-06-28 18:36:37 +00:00
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2010-09-26 01:58:44 +00:00
|
|
|
users.extraUsers = mkIf (cfg.user == null) [
|
2010-09-26 02:10:23 +00:00
|
|
|
{ name = "quassel";
|
2010-06-28 18:36:37 +00:00
|
|
|
description = "Quassel IRC client daemon";
|
2013-08-26 13:20:25 +00:00
|
|
|
group = "quassel";
|
|
|
|
uid = config.ids.uids.quassel;
|
2010-09-26 01:58:44 +00:00
|
|
|
}];
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2013-08-26 13:20:25 +00:00
|
|
|
users.extraGroups = mkIf (cfg.user == null) [
|
|
|
|
{ name = "quassel";
|
|
|
|
gid = config.ids.gids.quassel;
|
|
|
|
}];
|
2010-06-28 18:36:37 +00:00
|
|
|
|
2014-11-08 13:59:07 +00:00
|
|
|
systemd.services.quassel =
|
2010-06-28 18:36:37 +00:00
|
|
|
{ description = "Quassel IRC client daemon";
|
|
|
|
|
2014-11-08 13:59:07 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2015-08-17 16:35:08 +00:00
|
|
|
after = [ "network.target" ] ++ optional config.services.postgresql.enable "postgresql.service"
|
|
|
|
++ optional config.services.mysql.enable "mysql.service";
|
2010-06-28 18:36:37 +00:00
|
|
|
|
|
|
|
preStart = ''
|
2014-11-08 13:59:07 +00:00
|
|
|
mkdir -p ${cfg.dataDir}
|
|
|
|
chown ${user} ${cfg.dataDir}
|
2010-06-28 18:36:37 +00:00
|
|
|
'';
|
|
|
|
|
2014-11-08 13:59:07 +00:00
|
|
|
serviceConfig =
|
|
|
|
{
|
2015-11-09 16:53:37 +00:00
|
|
|
ExecStart = "${quassel}/bin/quasselcore --listen=${concatStringsSep '','' cfg.interfaces} --port=${toString cfg.portNumber} --configdir=${cfg.dataDir}";
|
2014-11-08 13:59:07 +00:00
|
|
|
User = user;
|
|
|
|
PermissionsStartOnly = true;
|
|
|
|
};
|
2010-06-28 18:36:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2010-06-28 18:36:37 +00:00
|
|
|
}
|