config/pkgs/tmuxbash.nix

9 lines
138 B
Nix
Raw Normal View History

2024-07-29 15:39:54 +03:00
{ tmux, writeShellApplication, ... }:
2024-02-05 09:19:16 +02:00
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
'';
}