16 lines
303 B
Nix
16 lines
303 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
escapeTime = 0;
|
|
mouse = true;
|
|
newSession = true;
|
|
shell = "${pkgs.fish}/bin/fish";
|
|
};
|
|
|
|
xdg.configFile."tmux" = {
|
|
source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/dotfiles/tmux";
|
|
recursive = true;
|
|
};
|
|
}
|