mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
yt-dlp: fix settings example
The yt-dlp settings should be an attribute set.
(cherry picked from commit e3e2abaef5)
This commit is contained in:
committed by
Robert Helgesson
parent
44ca0df409
commit
9ad9dfe371
@@ -29,11 +29,13 @@ in {
|
||||
type = with types; attrsOf (oneOf [ bool int str ]);
|
||||
default = { };
|
||||
example = literalExpression ''
|
||||
embed-thumbnail = true;
|
||||
embed-subs = true;
|
||||
sub-langs = "all";
|
||||
downloader = "aria2c";
|
||||
downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
|
||||
{
|
||||
embed-thumbnail = true;
|
||||
embed-subs = true;
|
||||
sub-langs = "all";
|
||||
downloader = "aria2c";
|
||||
downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
Configuration written to
|
||||
|
||||
Reference in New Issue
Block a user