11 lines
166 B
Nix
11 lines
166 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
shortcut = "a";
|
|
extraConfig = ''
|
|
set -g status off
|
|
set -g mouse on
|
|
'';
|
|
};
|
|
}
|