1
0
Fork 0
dotfiles/home/programs/yt-dlp.nix

15 lines
185 B
Nix
Raw Normal View History

2022-04-14 18:25:49 +00:00
{ pkgs, ... }:
{
2022-08-01 10:24:30 +00:00
home.packages = with pkgs; [
atomicparsley
rtmpdump
yt-dlp
];
2022-04-14 18:25:49 +00:00
xdg.configFile.yt-dlp = {
source = ../config/yt-dlp;
recursive = true;
};
}