nix-config/aspects/cli/tmux.nix
2026-02-12 18:50:38 -03:00

19 lines
288 B
Nix

{ ... }:
{
flake.modules.homeManager.cli-tmux =
{
config,
lib,
pkgs,
...
}:
{
programs.tmux = {
enable = true;
clock24 = true;
terminal = "xterm-256color";
mouse = true;
keyMode = "vi";
};
};
}