mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 04:59:23 +08:00
16 lines
264 B
Nix
16 lines
264 B
Nix
inputs:
|
|
{
|
|
config =
|
|
{
|
|
programs.yazi.enable = true;
|
|
nixos.user.sharedModules =
|
|
[{
|
|
config.programs.yazi =
|
|
{
|
|
enable = true;
|
|
keymap.mgr.append_keymap = [{ on = "T"; run = "shell --orphan ghostty"; }];
|
|
};
|
|
}];
|
|
};
|
|
}
|