mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ 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" { };
|
|
port = lib.mkOption {
|
|
type = lib.types.port;
|
|
default = 5082;
|
|
description = ''
|
|
TorrentStream port.
|
|
'';
|
|
};
|
|
openFirewall = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Open ports in the firewall for TorrentStream daemon.
|
|
'';
|
|
};
|
|
address = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "0.0.0.0";
|
|
description = ''
|
|
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 ];
|
|
};
|
|
}
|