me like nix
0

Configure Feed

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

add recyclarr

+55 -1
+55 -1
configuration.nix
··· 225 225 enable = true; 226 226 vpn = { 227 227 enable = true; 228 - wgConf = /data/wireguard.conf; 228 + wgConf = "/data/wireguard.conf"; 229 229 }; 230 230 231 231 jellyfin = { ··· 245 245 radarr.enable = true; 246 246 sonarr.enable = true; 247 247 jellyseerr.enable = true; 248 + 249 + recyclarr = { 250 + enable = true; 251 + configuration = { 252 + sonarr = { 253 + series = { 254 + base_url = "http://localhost:8989"; 255 + api_key = "!env_var SONARR_API_KEY"; 256 + quality_definition = { 257 + type = "series"; 258 + }; 259 + delete_old_custom_formats = true; 260 + custom_formats = [ 261 + { 262 + trash_ids = [ 263 + "85c61753df5da1fb2aab6f2a47426b09" # BR-DISK 264 + "9c11cd3f07101cdba90a2d81cf0e56b4" # LQ 265 + ]; 266 + assign_scores_to = [ 267 + { 268 + name = "WEB-DL (1080p)"; 269 + score = -10000; 270 + } 271 + ]; 272 + } 273 + ]; 274 + }; 275 + }; 276 + radarr = { 277 + movies = { 278 + base_url = "http://localhost:7878"; 279 + api_key = "!env_var RADARR_API_KEY"; 280 + quality_definition = { 281 + type = "movie"; 282 + }; 283 + delete_old_custom_formats = true; 284 + custom_formats = [ 285 + { 286 + trash_ids = [ 287 + "570bc9ebecd92723d2d21500f4be314c" # Remaster 288 + "eca37840c13c6ef2dd0262b141a5482f" # 4K Remaster 289 + ]; 290 + assign_scores_to = [ 291 + { 292 + name = "HD Bluray + WEB"; 293 + score = 25; 294 + } 295 + ]; 296 + } 297 + ]; 298 + }; 299 + }; 300 + }; 301 + }; 248 302 }; 249 303 250 304 # Enable the OpenSSH daemon.