1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/yazi/fish-integration-enabled.nix

19 lines
358 B
Nix
Raw Normal View History

{ config, ... }:
{
programs.fish.enable = true;
programs.yazi = {
enable = true;
shellWrapperName = "yy";
enableFishIntegration = true;
};
test.stubs.yazi = { };
nmt.script = ''
assertFileContent home-files/.config/fish/functions/${config.programs.yazi.shellWrapperName}.fish \
${./fish-integration-expected.fish}
'';
}