nixos-config/home-manager/modules/tmux.nix
2023-08-15 14:43:46 +02:00

17 lines
271 B
Nix

{ pkgs, ... }: {
programs.tmux = {
enable = true;
keyMode = "vi";
escapeTime = 0;
plugins = [
pkgs.tmuxPlugins.gruvbox
];
shell = "/home/felix/.nix-profile/bin/zsh";
terminal = "xterm-256color";
extraConfig = ''
'';
};
}