10 lines
166 B
Nix
10 lines
166 B
Nix
{
|
|
flake.modules.homeManager.base =
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.tmux.plugins = with pkgs.tmuxPlugins; [
|
|
resurrect
|
|
yank
|
|
];
|
|
};
|
|
}
|