36 lines
607 B
Nix
36 lines
607 B
Nix
{ pkgs, extraInfo, ... }:
|
|
{
|
|
services.jellyfin.enable = true;
|
|
services.nginx.virtualHosts.${extraInfo.jellyfinURI} = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://localhost:8096";
|
|
};
|
|
|
|
"/socket" = {
|
|
proxyPass = "http://localhost:8096";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
services.sonarr = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
services.radarr = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
# Torrent client
|
|
services.deluge = {
|
|
enable = true;
|
|
web.enable = true;
|
|
};
|
|
}
|