From e1c7ffb1345cf3151f1e7abb0a02e7e2f0a23361 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Mon, 26 Jan 2026 21:55:03 +0100 Subject: [PATCH] add yt-dlp to nfss --- hosts/nixos/nfss/home.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/nixos/nfss/home.nix b/hosts/nixos/nfss/home.nix index e303847..6facc3d 100644 --- a/hosts/nixos/nfss/home.nix +++ b/hosts/nixos/nfss/home.nix @@ -6,9 +6,15 @@ ../../../modules/tex.nix ../../../modules/syncthing.nix ../../../modules/schedule.nix + ../../../modules/yt-dlp.nix ]; home.packages = with pkgs; [ ]; + programs.yt-dlp-custom = { + enable = true; + downloadDir = "/home/yanlin/Downloads"; + }; + }