config/pkgs/tmuxbash.nix

14 lines
159 B
Nix
Raw Normal View History

2024-02-05 09:19:16 +02:00
{
tmux,
bash,
writeShellApplication,
...
}:
writeShellApplication {
name = "tmuxbash";
text = ''
${tmux}/bin/tmux
${bash}/bin/bash
'';
}