about summary refs log tree commit diff
path: root/users/fcuny/cli/yt-dlp.nix
blob: d2716929630aa58a98235b881928369f9866296a (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, lib, pkgs, ... }:

{
  xdg.configFile."yt-dlp/config".source = ../configs/yt-dlp/config;

  home.packages = with pkgs; [
    yt-dlp
  ];
}