feat: add nixarr

This commit is contained in:
Moritz Böhme 2025-08-25 21:09:59 +02:00
parent e6cae70857
commit 974b872e83
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
42 changed files with 1161 additions and 4 deletions

View file

@ -0,0 +1,17 @@
{
pkgs,
config,
...
}: {
nixarr.jellyseerr = {
# NOTE: cannot set password so just set the generated one manually
enable = true;
};
services.nginx.virtualHosts."jellyseerr.moritz.place" = {
forceSSL = true;
useACMEHost = "any.moritz.place";
locations."/" = {
proxyPass = "http://127.0.0.1:5055";
};
};
}