❄️ Nix configurations
0
fork

Configure Feed

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

removing lidarr because it sucks

It does not connect with musicbrainz reliably...

A. Ottr 109a0d62 7ca6c34c

+6 -6
+6 -6
modules/nixos/server/media.nix
··· 52 52 group = "media"; 53 53 }; 54 54 55 - services.lidarr = { 55 + services.navidrome = { 56 56 enable = true; 57 - settings.server.port = 38686; 57 + settings.Port = 34533; 58 58 user = "media"; 59 59 group = "media"; 60 60 }; ··· 79 79 service = "son"; 80 80 tls.certResolver = "letsencrypt"; 81 81 }; 82 - lidarr = { 82 + navidrome = { 83 83 entryPoints = [ "websecure" ]; 84 - rule = "Host(`lidarr.polecat.otter.place`)"; 85 - service = "lidarr"; 84 + rule = "Host(`navidrome.polecat.otter.place`)"; 85 + service = "navidrome"; 86 86 tls.certResolver = "letsencrypt"; 87 87 }; 88 88 ··· 98 98 sab.loadBalancer.servers = [{ url = "http://localhost:38080"; }]; 99 99 rad.loadBalancer.servers = [ { url = "http://localhost:37878"; } ]; 100 100 son.loadBalancer.servers = [ { url = "http://localhost:38989"; } ]; 101 - lidarr.loadBalancer.servers = [ { url = "http://localhost:38686"; } ]; 101 + navidrome.loadBalancer.servers = [ { url = "http://localhost:34533"; } ]; 102 102 jellyseerr.loadBalancer.servers = [ { url = "http://localhost:35055"; } ]; 103 103 }; 104 104 };