mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-06 06:58:41 +00:00
20 lines
401 B
Nix
20 lines
401 B
Nix
{pkgs, ...}: {
|
|
imports = [./zsh.nix];
|
|
home.packages = [
|
|
pkgs.tmux
|
|
];
|
|
|
|
programs.tmux = {
|
|
shell = "${pkgs.zsh}/bin/zsh";
|
|
escapeTime = 50;
|
|
mouse = false;
|
|
prefix = "C-b";
|
|
enable = true;
|
|
terminal = "screen-256color";
|
|
extraConfig = ''
|
|
set-option -sa terminal-features ',xterm-256color:RGB'
|
|
set -g default-command "exec ${pkgs.zsh}/bin/zsh"
|
|
'';
|
|
};
|
|
}
|