diff options
author | Soispha <soispha@vhack.eu> | 2024-01-01 17:17:22 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-01 17:17:22 +0100 |
commit | 2c2458c815007611ebb6a1ee0790851cc3c00851 (patch) | |
tree | 725aad828737ca6855ca54e4fe306da1172eb830 /hm/soispha/pkgs/scripts.nix | |
parent | feat(hm/conf/ytcc): Init (diff) | |
download | nixos-config-2c2458c815007611ebb6a1ee0790851cc3c00851.zip |
feat(hm/pkgs/ytc): Init
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/pkgs/scripts.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hm/soispha/pkgs/scripts.nix b/hm/soispha/pkgs/scripts.nix index d1a78c29..0b32a9c1 100644 --- a/hm/soispha/pkgs/scripts.nix +++ b/hm/soispha/pkgs/scripts.nix @@ -193,6 +193,22 @@ path = "wrappers"; dependencies = builtins.attrValues {inherit (pkgs) libvirt;}; }; + ytc-scr = write_script { + name = "ytc"; + path = "wrappers"; + dependencies = builtins.attrValues { + inherit + (pkgs) + jq + yt-dlp + ytcc + csvtool + mpv + ffmpeg + gnused + ; + }; + }; yti-scr = write_script { name = "yti"; path = "wrappers"; @@ -214,5 +230,6 @@ in [ spodi-scr update-sys-scr virsh-del-scr + ytc-scr yti-scr ] |