alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add recyclarr
author
Sean Aye
date
11 months ago
(Jul 7, 2025, 11:17 AM -0400)
commit
fa2feb4b
fa2feb4ba7321571825903becff76525fc841d5f
parent
e7d59b02
e7d59b02d70d12daa2e98f40b9b4379bf9323d8e
+55
-1
1 changed file
Expand all
Collapse all
Unified
Split
configuration.nix
+55
-1
configuration.nix
Reviewed
···
225
225
enable = true;
226
226
vpn = {
227
227
enable = true;
228
228
-
wgConf = /data/wireguard.conf;
228
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
248
+
249
249
+
recyclarr = {
250
250
+
enable = true;
251
251
+
configuration = {
252
252
+
sonarr = {
253
253
+
series = {
254
254
+
base_url = "http://localhost:8989";
255
255
+
api_key = "!env_var SONARR_API_KEY";
256
256
+
quality_definition = {
257
257
+
type = "series";
258
258
+
};
259
259
+
delete_old_custom_formats = true;
260
260
+
custom_formats = [
261
261
+
{
262
262
+
trash_ids = [
263
263
+
"85c61753df5da1fb2aab6f2a47426b09" # BR-DISK
264
264
+
"9c11cd3f07101cdba90a2d81cf0e56b4" # LQ
265
265
+
];
266
266
+
assign_scores_to = [
267
267
+
{
268
268
+
name = "WEB-DL (1080p)";
269
269
+
score = -10000;
270
270
+
}
271
271
+
];
272
272
+
}
273
273
+
];
274
274
+
};
275
275
+
};
276
276
+
radarr = {
277
277
+
movies = {
278
278
+
base_url = "http://localhost:7878";
279
279
+
api_key = "!env_var RADARR_API_KEY";
280
280
+
quality_definition = {
281
281
+
type = "movie";
282
282
+
};
283
283
+
delete_old_custom_formats = true;
284
284
+
custom_formats = [
285
285
+
{
286
286
+
trash_ids = [
287
287
+
"570bc9ebecd92723d2d21500f4be314c" # Remaster
288
288
+
"eca37840c13c6ef2dd0262b141a5482f" # 4K Remaster
289
289
+
];
290
290
+
assign_scores_to = [
291
291
+
{
292
292
+
name = "HD Bluray + WEB";
293
293
+
score = 25;
294
294
+
}
295
295
+
];
296
296
+
}
297
297
+
];
298
298
+
};
299
299
+
};
300
300
+
};
301
301
+
};
248
302
};
249
303
250
304
# Enable the OpenSSH daemon.