(home) add tmux shell program

This commit is contained in:
Laureηt 2024-03-31 16:11:24 +02:00
parent d0e0423744
commit 41bc639b36
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk

8
home/shell/tmux.nix Normal file
View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
programs.tmux = {
enable = true;
package = pkgs.tmux;
clock24 = true;
};
}