2019-09-02 22:36:30 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.syncplay;
|
|
|
|
|
|
|
|
cmdArgs =
|
|
|
|
[ "--port" cfg.port ]
|
|
|
|
++ optionals (cfg.salt != null) [ "--salt" cfg.salt ]
|
|
|
|
++ optionals (cfg.certDir != null) [ "--tls" cfg.certDir ];
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.syncplay = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc "If enabled, start the Syncplay server.";
|
2019-09-02 22:36:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
2021-08-01 12:09:26 +01:00
|
|
|
type = types.port;
|
2019-09-02 22:36:30 +01:00
|
|
|
default = 8999;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2019-09-02 22:36:30 +01:00
|
|
|
TCP port to bind to.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
salt = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2019-09-02 22:36:30 +01:00
|
|
|
Salt to allow room operator passwords generated by this server
|
|
|
|
instance to still work when the server is restarted.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
certDir = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2019-09-02 22:36:30 +01:00
|
|
|
TLS certificates directory to use for encryption. See
|
2022-07-28 22:19:15 +01:00
|
|
|
<https://github.com/Syncplay/syncplay/wiki/TLS-support>.
|
2019-09-02 22:36:30 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "nobody";
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2019-09-02 22:36:30 +01:00
|
|
|
User to use when running Syncplay.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "nogroup";
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2019-09-02 22:36:30 +01:00
|
|
|
Group to use when running Syncplay.
|
|
|
|
'';
|
|
|
|
};
|
2022-03-23 23:25:35 +00:00
|
|
|
|
|
|
|
passwordFile = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2022-03-23 23:25:35 +00:00
|
|
|
Path to the file that contains the server password. If
|
2022-07-28 22:19:15 +01:00
|
|
|
`null`, the server doesn't require a password.
|
2022-03-23 23:25:35 +00:00
|
|
|
'';
|
|
|
|
};
|
2019-09-02 22:36:30 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.syncplay = {
|
|
|
|
description = "Syncplay Service";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2022-02-04 03:52:13 +00:00
|
|
|
after = [ "network-online.target" ];
|
2019-09-02 22:36:30 +01:00
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
User = cfg.user;
|
|
|
|
Group = cfg.group;
|
2022-03-23 23:25:35 +00:00
|
|
|
LoadCredential = lib.mkIf (cfg.passwordFile != null) "password:${cfg.passwordFile}";
|
2019-09-02 22:36:30 +01:00
|
|
|
};
|
2022-03-23 23:25:35 +00:00
|
|
|
|
|
|
|
script = ''
|
|
|
|
${lib.optionalString (cfg.passwordFile != null) ''
|
|
|
|
export SYNCPLAY_PASSWORD=$(cat "''${CREDENTIALS_DIRECTORY}/password")
|
|
|
|
''}
|
2022-04-13 22:58:51 +01:00
|
|
|
exec ${pkgs.syncplay-nogui}/bin/syncplay-server ${escapeShellArgs cmdArgs}
|
2022-03-23 23:25:35 +00:00
|
|
|
'';
|
2019-09-02 22:36:30 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|