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