This commit is contained in:
2025-11-16 02:39:10 +03:00
parent 7acc6b352f
commit a20d8d2e89
4 changed files with 21 additions and 4 deletions
+14 -1
View File
@@ -1 +1,14 @@
{ }
{ config, pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
keyMode = "vi";
historyLimit = 5000;
mouse = true;
newSession = true;
shell = "${pkgs.zsh}/bin/zsh";
};
}