home-manager/tests/modules/programs/atuin/fish.nix

25 lines
528 B
Nix
Raw Normal View History

2022-01-20 22:07:29 +00:00
{ lib, ... }:
{
programs = {
atuin.enable = true;
fish.enable = true;
};
# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
lib.mkForce (builtins.toFile "empty" "");
test.stubs = {
2024-07-10 21:11:15 +00:00
atuin = { name = "atuin"; };
2022-01-20 22:07:29 +00:00
bash-preexec = { };
};
nmt.script = ''
assertFileExists home-files/.config/fish/config.fish
assertFileContains \
home-files/.config/fish/config.fish \
'@atuin@/bin/atuin init fish | source'
2022-01-20 22:07:29 +00:00
'';
}