CLI tool configurations: btop, comma, direnv, helix, hm-cli, starship, tmux Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
236 B
Nix
12 lines
236 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.homeManager.cli-tmux = { config, lib, pkgs, ... }: {
|
|
programs.tmux = {
|
|
enable = true;
|
|
clock24 = true;
|
|
terminal = "xterm-256color";
|
|
mouse = true;
|
|
keyMode = "vi";
|
|
};
|
|
};
|
|
}
|