We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b54c428 + 56d6be0 commit e0b0e42Copy full SHA for e0b0e42
nixos/beast/jellarr.nix
@@ -278,6 +278,7 @@
278
isAdult ? false,
279
isGuest ? false,
280
allLibraries ? false,
281
+ extraLibraries ? [ ],
282
}:
283
{
284
inherit name password;
@@ -306,7 +307,8 @@
306
307
++ lib.optionals isAdult [
308
"Attic"
309
"Fruit"
- ];
310
+ ]
311
+ ++ extraLibraries;
312
};
313
displayMissingEpisodes = true;
314
subtitleLanguagePreference = "eng";
@@ -353,7 +355,10 @@
353
355
})
354
356
357
(getGuestUser { name = "DZ"; })
- (getGuestUser { name = "ZS"; })
358
+ (getGuestUser {
359
+ name = "ZS";
360
+ extraLibraries = [ "Attic" ];
361
+ })
362
(getGuestUser { name = "Olga"; })
363
];
364
plugins = map (name: { inherit name; }) [
0 commit comments