chore(yazi): add wl-clipboard

This commit is contained in:
DashieTM 2025-09-23 23:46:41 +02:00
parent e6d19b9094
commit 8b12e79650

View file

@ -38,7 +38,7 @@
}; };
plugins = lib.mkOption { plugins = lib.mkOption {
default = { default = {
inherit (pkgs.yaziPlugins) piper diff gitui; inherit (pkgs.yaziPlugins) piper diff gitui wl-clipboard;
}; };
example = {}; example = {};
type = with lib.types; attrsOf anything; type = with lib.types; attrsOf anything;
@ -55,7 +55,7 @@
inherit (conf) enable; inherit (conf) enable;
settings = conf.settings // config.mods.yazi.additionalKeymap; settings = conf.settings // config.mods.yazi.additionalKeymap;
keymap = conf.keymap // config.mods.yazi.additionalConfig; keymap = conf.keymap // config.mods.yazi.additionalConfig;
plugins = config.mods.yazi.plugins; inherit (config.mods.yazi) plugins;
}; };
} }
); );