Add yt-dlp module for download web videos

This commit is contained in:
Yan Lin 2025-09-16 01:35:05 +02:00
parent 6482a70f7a
commit a91efe6818
9 changed files with 328 additions and 1 deletions

View file

@ -17,6 +17,7 @@
../../modules/ghostty.nix
../../modules/syncthing.nix
../../modules/dictionary.nix
../../modules/yt-dlp.nix
../../config/fonts.nix
];

View file

@ -8,4 +8,9 @@
# iMac-specific home configuration
# Example: Different screen setup, desktop-specific tools, etc.
# yt-dlp configuration
programs.yt-dlp-custom = {
enable = true;
downloadDir = "~/Downloads/Videos";
};
}

View file

@ -8,4 +8,9 @@
# MacBook Air-specific home configuration
# Example: Laptop-specific tools, power management, etc.
# yt-dlp configuration
programs.yt-dlp-custom = {
enable = true;
downloadDir = "~/Downloads/Videos";
};
}