nixpkgs/nixos/modules/services/torrent/torrentstream.nix

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

54 lines
1.4 KiB
Nix
Raw Normal View History

2023-10-17 17:08:52 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.services.torrentstream;
dataDir = "/var/lib/torrentstream/";
in
{
options.services.torrentstream = {
enable = lib.mkEnableOption "TorrentStream daemon";
package = lib.mkPackageOption pkgs "torrentstream" { };
2023-10-17 17:08:52 +00:00
port = lib.mkOption {
type = lib.types.port;
default = 5082;
description = ''
2023-10-17 17:08:52 +00:00
TorrentStream port.
'';
};
openFirewall = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
2023-10-17 17:08:52 +00:00
Open ports in the firewall for TorrentStream daemon.
'';
};
address = lib.mkOption {
type = lib.types.str;
default = "0.0.0.0";
description = ''
2023-10-17 17:08:52 +00:00
Address to listen on.
'';
};
};
config = lib.mkIf cfg.enable {
systemd.services.torrentstream = {
after = [ "network.target" ];
description = "TorrentStream Daemon";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = lib.getExe cfg.package;
Restart = "on-failure";
UMask = "077";
StateDirectory = "torrentstream";
DynamicUser = true;
};
environment = {
WEB_PORT = toString cfg.port;
DOWNLOAD_PATH = "%S/torrentstream";
LISTEN_ADDR = cfg.address;
};
};
networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewall [ cfg.port ];
};
}