diff options
| author | sinanmohd <sinan@sinanmohd.com> | 2026-02-08 22:56:12 +0530 |
|---|---|---|
| committer | sinanmohd <sinan@sinanmohd.com> | 2026-02-08 22:56:12 +0530 |
| commit | 7542b49a5f093ad0d22f3cd964cdbc7ce338aa94 (patch) | |
| tree | 39cf94ee897caf4914751c2de7bdfbe36133379c /home/wayland/pkgs/wayland-scripts/default.nix | |
| parent | 142a0ef7616c870e06850d266137a9799e09f8ea (diff) | |
feat(home/wayland/wayland-scripts): init new cmds
Diffstat (limited to 'home/wayland/pkgs/wayland-scripts/default.nix')
| -rw-r--r-- | home/wayland/pkgs/wayland-scripts/default.nix | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/home/wayland/pkgs/wayland-scripts/default.nix b/home/wayland/pkgs/wayland-scripts/default.nix index e39907a..982453b 100644 --- a/home/wayland/pkgs/wayland-scripts/default.nix +++ b/home/wayland/pkgs/wayland-scripts/default.nix @@ -10,6 +10,16 @@ bemenu, jq, coreutils, + mpv, + util-linux, + gnugrep, + file, + wl-clipboard, + xdg-utils, + wtype, + curl, + tailscale, + bc, }: stdenvNoCC.mkDerivation { @@ -56,6 +66,59 @@ stdenvNoCC.mkDerivation { coreutils ] } + wrapProgram $out/bin/damb \ + --prefix PATH : ${ + lib.makeBinPath [ + libnotify + bemenu + mpv + util-linux + gnugrep + coreutils + file + ] + } + wrapProgram $out/bin/dbook \ + --prefix PATH : ${ + lib.makeBinPath [ + libnotify + file + bemenu + coreutils + wl-clipboard + xdg-utils + wtype + ] + } + wrapProgram $out/bin/pirowatch \ + --prefix PATH : ${ + lib.makeBinPath [ + libnotify + curl + bemenu + coreutils + gnugrep + # webtorrent + ] + } + wrapProgram $out/bin/tcsv \ + --prefix PATH : ${ + lib.makeBinPath [ + libnotify + curl + bemenu + bc + # webtorrent + ] + } + wrapProgram $out/bin/vpn \ + --prefix PATH : ${ + lib.makeBinPath [ + libnotify + gnugrep + tailscale + ] + } ''; meta = { |
