feat: install bazarr

This commit is contained in:
wi11-holdsworth 2025-12-31 16:05:35 +11:00
parent a314b1022f
commit f7d138dd19
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,19 @@
let
port = 5017;
in
{
services = {
bazarr = {
enable = true;
dataDir = "/srv/bazarr";
group = "media";
listenPort = port;
};
nginx.virtualHosts."bazarr.fi33.buzz" = {
forceSSL = true;
useACMEHost = "fi33.buzz";
locations."/".proxyPass = "http://localhost:${toString port}";
};
};
}