dotfiles/nixos/home-manager/programs/tmux.nix

12 lines
166 B
Nix
Raw Normal View History

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