738f4cd03f
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>
18 lines
431 B
Nix
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;
|
|
};
|
|
}
|