forked from mirrors/nixpkgs
2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
122 lines
3.2 KiB
Nix
122 lines
3.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.syncthing.relay;
|
|
|
|
dataDirectory = "/var/lib/syncthing-relay";
|
|
|
|
relayOptions =
|
|
[
|
|
"--keys=${dataDirectory}"
|
|
"--listen=${cfg.listenAddress}:${toString cfg.port}"
|
|
"--status-srv=${cfg.statusListenAddress}:${toString cfg.statusPort}"
|
|
"--provided-by=${escapeShellArg cfg.providedBy}"
|
|
]
|
|
++ optional (cfg.pools != null) "--pools=${escapeShellArg (concatStringsSep "," cfg.pools)}"
|
|
++ optional (cfg.globalRateBps != null) "--global-rate=${toString cfg.globalRateBps}"
|
|
++ optional (cfg.perSessionRateBps != null) "--per-session-rate=${toString cfg.perSessionRateBps}"
|
|
++ cfg.extraOptions;
|
|
in {
|
|
###### interface
|
|
|
|
options.services.syncthing.relay = {
|
|
enable = mkEnableOption "Syncthing relay service";
|
|
|
|
listenAddress = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
example = "1.2.3.4";
|
|
description = lib.mdDoc ''
|
|
Address to listen on for relay traffic.
|
|
'';
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 22067;
|
|
description = lib.mdDoc ''
|
|
Port to listen on for relay traffic. This port should be added to
|
|
`networking.firewall.allowedTCPPorts`.
|
|
'';
|
|
};
|
|
|
|
statusListenAddress = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
example = "1.2.3.4";
|
|
description = lib.mdDoc ''
|
|
Address to listen on for serving the relay status API.
|
|
'';
|
|
};
|
|
|
|
statusPort = mkOption {
|
|
type = types.port;
|
|
default = 22070;
|
|
description = lib.mdDoc ''
|
|
Port to listen on for serving the relay status API. This port should be
|
|
added to `networking.firewall.allowedTCPPorts`.
|
|
'';
|
|
};
|
|
|
|
pools = mkOption {
|
|
type = types.nullOr (types.listOf types.str);
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
Relay pools to join. If null, uses the default global pool.
|
|
'';
|
|
};
|
|
|
|
providedBy = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
description = lib.mdDoc ''
|
|
Human-readable description of the provider of the relay (you).
|
|
'';
|
|
};
|
|
|
|
globalRateBps = mkOption {
|
|
type = types.nullOr types.ints.positive;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
Global bandwidth rate limit in bytes per second.
|
|
'';
|
|
};
|
|
|
|
perSessionRateBps = mkOption {
|
|
type = types.nullOr types.ints.positive;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
Per session bandwidth rate limit in bytes per second.
|
|
'';
|
|
};
|
|
|
|
extraOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
description = lib.mdDoc ''
|
|
Extra command line arguments to pass to strelaysrv.
|
|
'';
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.syncthing-relay = {
|
|
description = "Syncthing relay service";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
StateDirectory = baseNameOf dataDirectory;
|
|
|
|
Restart = "on-failure";
|
|
ExecStart = "${pkgs.syncthing-relay}/bin/strelaysrv ${concatStringsSep " " relayOptions}";
|
|
};
|
|
};
|
|
};
|
|
}
|