Files
nixos-config/home/common/programs/tmux.nix
T
naps62 738f4cd03f feat: port the tmux config
156-line .tmux.conf plus tpm plugins existed only on the ubuntu box.
Plugins are declared instead of git-cloned at runtime by tpm.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-17 12:44:16 +00:00

18 lines
431 B
Nix

{ pkgs, ... }:
{
programs.tmux = {
enable = true;
# The @plugin lines and the tpm bootstrap are stripped from tmux.conf:
# home-manager writes the run-shell lines for these itself, and tpm would
# otherwise try to git-clone them into ~/.tmux/plugins at runtime.
plugins = with pkgs.tmuxPlugins; [
sensible
resurrect
continuum
];
extraConfig = builtins.readFile ./tmux.conf;
};
}