Files
nixos/modules/packages/yazi.nix

21 lines
420 B
Nix

{ pkgs, ... }:
{
config =
{
programs.yazi.enable = true;
nixos.user.sharedModules =
[{
config.programs.yazi =
{
enable = true;
keymap.mgr.append_keymap =
[
{ on = "T"; run = "shell --orphan ghostty"; }
{ on = [ "c" "a" "a" ]; run = "plugin compress"; }
];
plugins = { inherit (pkgs.yaziPlugins) compress; };
};
}];
};
}