diff options
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/cli/yt-dlp.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/fcuny/cli/yt-dlp.nix b/users/fcuny/cli/yt-dlp.nix new file mode 100644 index 0000000..8e9cd9c --- /dev/null +++ b/users/fcuny/cli/yt-dlp.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + xdg.configFile."yt-dlp/config".source = ../configs/yt-dlp/config; + + home.packages = with pkgs; [ + unstable.yt-dlp + ]; +} |