1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
home-manager/tests/modules/programs/yazi/xonsh-integration-enabled.nix
In'Maldrerah Eyllisitryanmitore 35a843c2fa
yazi: add xonsh integration
2025-02-19 21:37:30 +01:00

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}'
'';
}