nix-config/modules2/tmux/plugins.nix

11 lines
166 B
Nix
Raw Normal View History

2025-07-24 22:24:47 +01:00
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
programs.tmux.plugins = with pkgs.tmuxPlugins; [
resurrect
yank
];
};
}