From ec6638af5d41f0407f127709696222e09adcc31e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 13:10:20 +0700 Subject: [PATCH] add yt-dlp config --- modules/features/home/yt-dlp.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/features/home/yt-dlp.nix b/modules/features/home/yt-dlp.nix index e77c986..c8c8fa4 100644 --- a/modules/features/home/yt-dlp.nix +++ b/modules/features/home/yt-dlp.nix @@ -1,6 +1,8 @@ {...}: { programs.yt-dlp = { enable = true; - settings = {}; + extraConfig = '' + -o ~/Downloads/yt-dlp/%(title)s.%(ext)s + ''; }; }