added tmux module

This commit is contained in:
joy 2024-10-11 00:08:08 +02:00
parent 3ed79e96c7
commit cf9bf05fbc
2 changed files with 9 additions and 0 deletions

View file

@ -11,5 +11,6 @@
./zoxide ./zoxide
./bat ./bat
./cmus ./cmus
./tmux
]; ];
} }

View file

@ -0,0 +1,8 @@
{
programs.tmux = {
enable = true;
extraConfig = ''
set-option -g status off
'';
};
}