Skip to content

Commit 56d6be0

Browse files
committed
jf: Enable attic library for ZS
1 parent b54c428 commit 56d6be0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

nixos/beast/jellarr.nix

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@
278278
isAdult ? false,
279279
isGuest ? false,
280280
allLibraries ? false,
281+
extraLibraries ? [ ],
281282
}:
282283
{
283284
inherit name password;
@@ -306,7 +307,8 @@
306307
++ lib.optionals isAdult [
307308
"Attic"
308309
"Fruit"
309-
];
310+
]
311+
++ extraLibraries;
310312
};
311313
displayMissingEpisodes = true;
312314
subtitleLanguagePreference = "eng";
@@ -353,7 +355,10 @@
353355
})
354356

355357
(getGuestUser { name = "DZ"; })
356-
(getGuestUser { name = "ZS"; })
358+
(getGuestUser {
359+
name = "ZS";
360+
extraLibraries = [ "Attic" ];
361+
})
357362
(getGuestUser { name = "Olga"; })
358363
];
359364
plugins = map (name: { inherit name; }) [

0 commit comments

Comments
 (0)