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