blob: 4773464f996584b20dead5948953ae2a70116822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ config, lib, pkgs, ... }:
let
cfg = config.hm.soft.yt-dlp;
in
{
options.hm.soft.yt-dlp.enable = lib.mkEnableOption "youtube content downloading tool";
config = lib.mkIf cfg.enable {
programs.yt-dlp = {
enable = true;
package = pkgs.yt-dlp_git;
settings = {
};
};
};
}
|