nix-config/users/tacocat/programs/tmux.nix

19 lines
326 B
Nix
Raw Normal View History

2023-12-30 02:30:08 +00:00
{
pkgs,
...
}: {
programs.tmux = {
enable = true;
escapeTime = 0;
clock24 = true;
mouse = true;
newSession = true;
shell = "${pkgs.fish}/bin/fish";
sensibleOnTop = true;
2023-12-30 02:42:01 +00:00
terminal = "tmux-256color";
2023-12-30 02:30:08 +00:00
# extraConfig = ''
# set -g default-terminal "screen-256color"
# '';
};
}