15 lines
214 B
Nix
15 lines
214 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs.tmux = {
|
|
enable = true;
|
|
clock24 = true;
|
|
keyMode = "vi";
|
|
historyLimit = 5000;
|
|
mouse = true;
|
|
newSession = true;
|
|
shell = "${pkgs.zsh}/bin/zsh";
|
|
};
|
|
}
|