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.

75 lines
2.0 KiB
Nix
Raw Normal View History

2014-12-20 22:38:52 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
2021-09-15 16:35:12 +00:00
WorkingDirectory = "/var/lib/tox-bootstrapd";
PIDFile = "${WorkingDirectory}/pid";
2014-12-20 22:38:52 +00:00
pkg = pkgs.libtoxcore;
cfg = config.services.toxBootstrapd;
cfgFile = builtins.toFile "tox-bootstrapd.conf"
''
port = ${toString cfg.port}
2021-09-15 16:35:12 +00:00
keys_file_path = "${WorkingDirectory}/keys"
2014-12-20 22:38:52 +00:00
pid_file_path = "${PIDFile}"
${cfg.extraConfig}
'';
in
{
options =
{ services.toxBootstrapd =
{ enable = mkOption {
type = types.bool;
default = false;
description =
lib.mdDoc ''
Whether to enable the Tox DHT bootstrap daemon.
2014-12-20 22:38:52 +00:00
'';
};
port = mkOption {
type = types.port;
2014-12-20 22:38:52 +00:00
default = 33445;
description = lib.mdDoc "Listening port (UDP).";
};
keysFile = mkOption {
type = types.str;
2021-09-15 16:35:12 +00:00
default = "${WorkingDirectory}/keys";
2014-12-20 22:38:52 +00:00
description = lib.mdDoc "Node key file.";
};
extraConfig = mkOption {
type = types.lines;
default = "";
description =
lib.mdDoc ''
Configuration for bootstrap daemon.
2014-12-20 22:38:52 +00: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 22:38:52 +00: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 22:38:52 +00:00
Type = "forking";
2021-09-15 16:35:12 +00:00
inherit PIDFile WorkingDirectory;
AmbientCapabilities = ["CAP_NET_BIND_SERVICE"];
DynamicUser = true;
StateDirectory = "tox-bootstrapd";
2014-12-20 22:38:52 +00:00
};
};
};
}