nixpkgs/nixos/modules/services/networking/tox-bootstrapd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.8 KiB
Nix
Raw Normal View History

2014-12-20 17:38:52 -05:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
2021-09-15 18:35:12 +02:00
WorkingDirectory = "/var/lib/tox-bootstrapd";
PIDFile = "${WorkingDirectory}/pid";
2014-12-20 17:38:52 -05:00
pkg = pkgs.libtoxcore;
cfg = config.services.toxBootstrapd;
cfgFile = builtins.toFile "tox-bootstrapd.conf" ''
port = ${toString cfg.port}
2021-09-15 18:35:12 +02:00
keys_file_path = "${WorkingDirectory}/keys"
2014-12-20 17:38:52 -05:00
pid_file_path = "${PIDFile}"
${cfg.extraConfig}
'';
in
{
options = {
services.toxBootstrapd = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to enable the Tox DHT bootstrap daemon.
2014-12-20 17:38:52 -05:00
'';
};
port = mkOption {
type = types.port;
2021-09-15 18:35:12 +02:00
default = 33445;
2014-12-20 17:38:52 -05:00
description = "Listening port (UDP).";
};
keysFile = mkOption {
type = types.str;
default = "${WorkingDirectory}/keys";
description = "Node key file.";
};
extraConfig = mkOption {
type = types.lines;
2014-12-20 17:38:52 -05:00
default = "";
description = ''
Configuration for bootstrap daemon.
2014-12-20 17:38:52 -05:00
See <https://github.com/irungentoo/toxcore/blob/master/other/bootstrap_daemon/tox-bootstrapd.conf>
and <https://wiki.tox.chat/users/nodes>.
'';
};
2014-12-20 17:38:52 -05:00
};
};
2014-12-20 17:38:52 -05:00
config = mkIf config.services.toxBootstrapd.enable {
systemd.services.tox-bootstrapd = {
description = "Tox DHT bootstrap daemon";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${pkg}/bin/tox-bootstrapd --config=${cfgFile}";
2014-12-20 17:38:52 -05:00
Type = "forking";
2021-09-15 18:35:12 +02:00
inherit PIDFile WorkingDirectory;
AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ];
DynamicUser = true;
StateDirectory = "tox-bootstrapd";
2014-12-20 17:38:52 -05:00
};
};
};
}