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

15 lines
172 B
Nix
Raw Permalink Normal View History

2022-12-19 09:09:08 +00:00
{
config,
pkgs,
...
}: {
2019-07-14 08:52:02 +01:00
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
'';
};
}