nix-config/modules/tmux/plugins.nix

8 lines
134 B
Nix
Raw Normal View History

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