nixos/modules/tmux/default.nix

10 lines
114 B
Nix
Raw Normal View History

2022-03-28 18:08:54 +02:00
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
extraConfig = ''
set -g mouse on
'';
};
}