about summary refs log tree commit diff
path: root/nixos/modules/services/torrent/torrentstream.nix
blob: 27aad06130e3c33016c2757743e21ce1cd25d92c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ config, lib, pkgs, ... }:

let
  cfg = config.services.torrentstream;
  dataDir = "/var/lib/torrentstream/";
in
{
  options.services.torrentstream = {
    enable = lib.mkEnableOption (lib.mdDoc "TorrentStream daemon");
    package = lib.mkPackageOption pkgs "torrentstream" { };
    port = lib.mkOption {
      type = lib.types.port;
      default = 5082;
      description = lib.mdDoc ''
        TorrentStream port.
      '';
    };
    openFirewall = lib.mkOption {
      type = lib.types.bool;
      default = false;
      description = lib.mdDoc ''
        Open ports in the firewall for TorrentStream daemon.
      '';
    };
    address = lib.mkOption {
      type = lib.types.str;
      default = "0.0.0.0";
      description = lib.mdDoc ''
        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 ];
  };
}