1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-17 05:35:06 +01:00
home-manager/tests/modules/programs/yazi/fish-integration-enabled.nix

17 lines
332 B
Nix
Raw Permalink Normal View History

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