1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-12 20:11:06 +01:00
home-manager/modules/programs/yt-dlp.nix
Austin Horstman b24689a173 treewide: use mkPackageOption
Standardized interface to provide a consistent treewide experience.
2025-04-02 21:49:14 -05:00

69 lines
1.8 KiB
Nix

{ config, lib, pkgs, ... }:
let
inherit (lib) mkOption types;
cfg = config.programs.yt-dlp;
renderSettings = lib.mapAttrsToList (name: value:
if lib.isBool value then
if value then "--${name}" else "--no-${name}"
else
"--${name} ${toString value}");
in {
meta.maintainers = [ ];
options.programs.yt-dlp = {
enable = lib.mkEnableOption "yt-dlp";
package = lib.mkPackageOption pkgs "yt-dlp" { };
settings = mkOption {
type = with types; attrsOf (oneOf [ bool int str ]);
default = { };
example = lib.literalExpression ''
{
embed-thumbnail = true;
embed-subs = true;
sub-langs = "all";
downloader = "aria2c";
downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
}
'';
description = ''
Configuration written to
{file}`$XDG_CONFIG_HOME/yt-dlp/config`.
Options must be specified in their "long form", for
example, `update = true;` instead of `U = true;`.
Short options can be specified in the `extraConfig` option.
See <https://github.com/yt-dlp/yt-dlp#configuration>
for explanation about possible values.
'';
};
extraConfig = mkOption {
type = types.lines;
default = "";
example = ''
--update
-F
'';
description = ''
Extra configuration to add to
{file}`$XDG_CONFIG_HOME/yt-dlp/config`.
'';
};
};
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
xdg.configFile."yt-dlp/config" =
lib.mkIf (cfg.settings != { } || cfg.extraConfig != "") {
text = lib.concatStringsSep "\n"
(lib.remove "" (renderSettings cfg.settings ++ [ cfg.extraConfig ]))
+ "\n";
};
};
}