summaryrefslogtreecommitdiff
path: root/pkgs/tmux-open/default.nix
blob: 1f882b4d153dbfe547150b0155ddb3b7708363f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  jq,
  substituteAll,
  sway,
  tmux,
  writeShellScriptBin,
  ...
}:
writeShellScriptBin "tmux-open" (builtins.readFile (substituteAll {
  src = ./tmux-open.sh;
  env = {inherit jq sway tmux;};
}))