nix-config/users/modules/tmux.nix

11 lines
No EOL
154 B
Nix

{ pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
terminal = "xterm-256color";
mouse = true;
keyMode = "vi";
};
}