nicks-nix-config/modules/tmux.nix
2023-10-14 10:17:57 -07:00

16 lines
271 B
Nix

{ config, pkgs, lib, ... }:
let
in
{
programs.tmux = {
enable = true;
terminal = "xterm-256color";
# Change this for faster resizing, but less precise
resizeAmount = 5;
keyMode = "vi";
mouse = true;
shell = "${pkgs.zsh}/bin/zsh";
};
}