❄️ Nix configurations
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add music manager

A. Ottr 7ca6c34c 56d34823

+15
+15
modules/nixos/server/media.nix
··· 52 52 group = "media"; 53 53 }; 54 54 55 + services.lidarr = { 56 + enable = true; 57 + settings.server.port = 38686; 58 + user = "media"; 59 + group = "media"; 60 + }; 61 + 55 62 services.traefik.dynamicConfigOptions.http = { 56 63 routers = { 57 64 sab = { ··· 72 79 service = "son"; 73 80 tls.certResolver = "letsencrypt"; 74 81 }; 82 + lidarr = { 83 + entryPoints = [ "websecure" ]; 84 + rule = "Host(`lidarr.polecat.otter.place`)"; 85 + service = "lidarr"; 86 + tls.certResolver = "letsencrypt"; 87 + }; 88 + 75 89 jellyseerr = { 76 90 entryPoints = [ "websecure" ]; 77 91 rule = "Host(`requests.otter.place`)"; ··· 84 98 sab.loadBalancer.servers = [{ url = "http://localhost:38080"; }]; 85 99 rad.loadBalancer.servers = [ { url = "http://localhost:37878"; } ]; 86 100 son.loadBalancer.servers = [ { url = "http://localhost:38989"; } ]; 101 + lidarr.loadBalancer.servers = [ { url = "http://localhost:38686"; } ]; 87 102 jellyseerr.loadBalancer.servers = [ { url = "http://localhost:35055"; } ]; 88 103 }; 89 104 };