diff options
author | Soispha <soispha@vhack.eu> | 2024-01-01 18:23:30 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-01 18:29:08 +0100 |
commit | b15530850f7220985d605eb366e9c01927fa4048 (patch) | |
tree | af3fccd5cbd7cadae26fe223213eda1cdcc24dea /hm/soispha/pkgs/scripts.nix | |
parent | fix(hm/pkgs/ytc): Wait for last mpv instance to exit before starting burndown (diff) | |
download | nixos-config-b15530850f7220985d605eb366e9c01927fa4048.zip |
feat(hm/pkgs/yts): Init
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/pkgs/scripts.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hm/soispha/pkgs/scripts.nix b/hm/soispha/pkgs/scripts.nix index 0b32a9c1..e9c70966 100644 --- a/hm/soispha/pkgs/scripts.nix +++ b/hm/soispha/pkgs/scripts.nix @@ -214,6 +214,15 @@ path = "wrappers"; dependencies = builtins.attrValues {inherit (pkgs) gawk expect yt-dlp;}; }; + yts-scr = write_script { + name = "yts"; + path = "wrappers"; + keep_path = true; # We need neovim + dependencies = builtins.attrValues { + inherit (pkgs) ytcc jq gawk; + inherit ytc-scr; + }; + }; in [ # llp-scr # TODO: see above aumo-scr @@ -232,4 +241,5 @@ in [ virsh-del-scr ytc-scr yti-scr + yts-scr ] |