From b7c0ebd725bb71165fec502f7000e2254d5333d5 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sun, 21 Sep 2025 14:16:54 +0000 Subject: [PATCH] deploy: f3ff73a5e13b62b4bebc69849eac58913aa2fc3a --- options.xhtml | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/options.xhtml b/options.xhtml index c206ae9e3..d5e822a40 100644 --- a/options.xhtml +++ b/options.xhtml @@ -17404,6 +17404,97 @@ null or string

+
+ + programs.animdl.enable + + +
+
+

Whether to enable animdl.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/animdl.nix> + +
+
+
+ + programs.animdl.package + + +
+
+

The animdl package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.animdl

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/animdl.nix> + +
+
+
+ + programs.animdl.settings + + +
+
+

Configuration settings for animdl. All the available options can be found here: +https://github.com/justfoolingaround/animdl?tab=readme-ov-file#configurations.

+ +

Type: +YAML 1.1 value

+ +

Default: +{ }

+ +

Example:

{
+  default_player = "mpv";
+  default_provider = "animixplay";
+  ffmpeg = {
+    executable = "ffmpeg";
+    hls_download = false;
+    submerge = true;
+  };
+  quality_string = "best[subtitle]/best";
+  site_urls = {
+    animixplay = "https://www.animixplay.to/";
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/animdl.nix> + +
+
programs.anki.enable