nixpkgs/nixos/modules/services/networking/syncplay.nix

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

97 lines
2.4 KiB
Nix
Raw Normal View History

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;
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;
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;
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;
description = lib.mdDoc ''
2019-09-02 22:36:30 +01:00
TLS certificates directory to use for encryption. See
<https://github.com/Syncplay/syncplay/wiki/TLS-support>.
2019-09-02 22:36:30 +01:00
'';
};
user = mkOption {
type = types.str;
default = "nobody";
description = lib.mdDoc ''
2019-09-02 22:36:30 +01:00
User to use when running Syncplay.
'';
};
group = mkOption {
type = types.str;
default = "nogroup";
description = lib.mdDoc ''
2019-09-02 22:36:30 +01:00
Group to use when running Syncplay.
'';
};
passwordFile = mkOption {
type = types.nullOr types.path;
default = null;
description = lib.mdDoc ''
Path to the file that contains the server password. If
`null`, the server doesn't require a password.
'';
};
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;
LoadCredential = lib.mkIf (cfg.passwordFile != null) "password:${cfg.passwordFile}";
2019-09-02 22:36:30 +01:00
};
script = ''
${lib.optionalString (cfg.passwordFile != null) ''
export SYNCPLAY_PASSWORD=$(cat "''${CREDENTIALS_DIRECTORY}/password")
''}
exec ${pkgs.syncplay-nogui}/bin/syncplay-server ${escapeShellArgs cmdArgs}
'';
2019-09-02 22:36:30 +01:00
};
};
}