From 4e0ef076352e71e5f1ab74abccbffb04b98fd30a Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Mon, 8 Dec 2025 23:04:28 +0100 Subject: [PATCH] add yt-dlp module to hs --- hosts/nixos/hs/home.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/nixos/hs/home.nix b/hosts/nixos/hs/home.nix index 06b673e..8352b96 100644 --- a/hosts/nixos/hs/home.nix +++ b/hosts/nixos/hs/home.nix @@ -6,6 +6,7 @@ ../../../modules/syncthing.nix ../../../modules/tex.nix ../../../modules/schedule.nix + ../../../modules/yt-dlp.nix ]; services.scheduled-commands.aicloud-backup = { @@ -17,6 +18,11 @@ ]; }; + programs.yt-dlp-custom = { + enable = true; + downloadDir = "/mnt/storage/Media/web-video"; + }; + home.packages = with pkgs; [ ];