nixos-config/configurations/camelot/jellyfin.nix

25 lines
440 B
Nix
Raw Normal View History

2023-11-24 18:45:27 +01:00
{ extraInfo, ... }:
2023-11-23 21:55:37 +01:00
{
services.jellyfin.enable = true;
2023-11-24 18:45:27 +01:00
services.nginx.virtualHosts.${extraInfo.jellyfinURI} = {
enableACME = true;
forceSSL = true;
locations = {
"/" = {
proxyPass = "http://localhost:8096";
};
"/socket" = {
proxyPass = "http://localhost:8096";
proxyWebsockets = true;
};
};
};
2023-11-24 22:12:02 +01:00
services.sonarr = {
enable = true;
openFirewall = true;
};
2023-11-23 21:55:37 +01:00
}