add nicer + tmuxbash

This commit is contained in:
2024-02-05 09:19:16 +02:00
committed by Motiejus Jakštys
parent e5736c67b9
commit eeaed5f3ab
5 changed files with 52 additions and 27 deletions

13
pkgs/tmuxbash.nix Normal file
View File

@@ -0,0 +1,13 @@
{
tmux,
bash,
writeShellApplication,
...
}:
writeShellApplication {
name = "tmuxbash";
text = ''
${tmux}/bin/tmux
${bash}/bin/bash
'';
}