config/pkgs/tmuxbash.nix

14 lines
159 B
Nix

{
tmux,
bash,
writeShellApplication,
...
}:
writeShellApplication {
name = "tmuxbash";
text = ''
${tmux}/bin/tmux
${bash}/bin/bash
'';
}