dotfiles/hosts/strix/configs/tmux.nix

15 lines
286 B
Nix
Raw Normal View History

2025-01-09 09:34:41 +01:00
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
extraConfig = ''
set -g allow-passthrough on
set -g default-shell "${pkgs.zsh}/bin/zsh"
set-window-option -g mode-keys vi
'';
terminal = "screen-256color";
#shell = "${pkgs.zsh}/bin/zsh";
};
}