blob: 67b31cb79032ddeb6d915fdd6302b0e51f33031e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ lib, ... }:
{
programs.tmux = {
enable = true;
terminal = "screen-256color"; # tmux-256color
escapeTime = 25;
shortcut = "q";
extraConfig = lib.readFile ./tmux.conf;
};
}
|