config/pkgs/tmuxbash.nix

13 lines
144 B
Nix
Raw Normal View History

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