dotfiles/nixos/programs/tmux.nix

12 lines
174 B
Nix
Raw Normal View History

2019-07-14 08:52:02 +01:00
{ config, pkgs, ... }:
{
programs.tmux = {
enable = true;
shortcut = "a";
extraConfig = ''
set -g status off
set -g mouse on
'';
};
}