2022-01-20 23:07:29 +01: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 23:11:15 +02:00
|
|
|
atuin = { name = "atuin"; };
|
2022-01-20 23:07:29 +01:00
|
|
|
bash-preexec = { };
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/fish/config.fish
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.config/fish/config.fish \
|
2023-03-15 11:52:48 +01:00
|
|
|
'@atuin@/bin/atuin init fish | source'
|
2022-01-20 23:07:29 +01:00
|
|
|
'';
|
|
|
|
}
|