❄️ Nix configurations
0
fork

Configure Feed

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

add download

+15
+15
nixos/ferret/media.nix
··· 51 51 group = "media"; 52 52 }; 53 53 54 + services.sabnzbd = { 55 + enable = true; 56 + user = "media"; 57 + group = "media"; 58 + }; 59 + 60 + 54 61 # SSL config 55 62 services.caddy = { 56 63 virtualHosts."jellyfin.ferret.otter.place".extraConfig = '' 57 64 reverse_proxy http://localhost:8096 65 + 66 + tls ${certloc}/cert.pem ${certloc}/key.pem { 67 + protocols tls1.3 68 + } 69 + ''; 70 + 71 + virtualHosts."sabnzbd.ferret.otter.place".extraConfig = '' 72 + reverse_proxy http://localhost:8888 58 73 59 74 tls ${certloc}/cert.pem ${certloc}/key.pem { 60 75 protocols tls1.3