mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
31 lines
623 B
Nix
31 lines
623 B
Nix
{ ... }:
|
|
|
|
let
|
|
shellIntegration = ''
|
|
def __yazi_init():
|
|
def ya(args):
|
|
tmp = $(mktemp -t "yazi-cwd.XXXXX")
|
|
$[yazi @(args) @(f"--cwd-file={tmp}")]
|
|
cwd = fp"{tmp}".read_text()
|
|
if cwd != "" and cwd != $PWD:
|
|
xonsh.dirstack.cd(cwd)
|
|
$[rm -f -- @(tmp)]
|
|
|
|
aliases['ya'] = ya
|
|
__yazi_init()
|
|
del __yazi_init
|
|
'';
|
|
in {
|
|
programs.xonsh.enable = true;
|
|
|
|
programs.yazi = {
|
|
enable = true;
|
|
enableXonshIntegration = true;
|
|
};
|
|
|
|
test.stubs.yazi = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContains home-files/.config/xonsh/rc.xsh '${shellIntegration}'
|
|
'';
|
|
}
|