dotfiles/nixos/programs/tmux.nix
2019-07-14 08:52:02 +01:00

12 lines
174 B
Nix

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