modules.packages.yazi: add keymap for ghostty

This commit is contained in:
2025-12-05 10:58:53 +08:00
parent c12842ea3c
commit f03d4c366b

View File

@@ -3,6 +3,13 @@ inputs:
config =
{
programs.yazi.enable = true;
nixos.user.sharedModules = [{ config.programs.yazi.enable = true; }];
nixos.user.sharedModules =
[{
config.programs.yazi =
{
enable = true;
keymap.mgr.append_keymap = [{ on = "T"; run = "shell --orphan ghostty"; }];
};
}];
};
}