dotfiles/nixos/home-manager/programs/tmux.nix
2020-07-25 09:01:20 +01:00

12 lines
174 B
Nix

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