19 lines
288 B
Nix
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";
|
|
};
|
|
};
|
|
}
|