Files
config/pkgs/tmuxbash.nix
2026-04-04 10:55:56 +00:00

14 lines
164 B
Nix

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