2023-03-15 11:52:48 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs = {
|
|
|
|
atuin.enable = true;
|
|
|
|
atuin.flags = [ "--disable-ctrl-r" "--disable-up-arrow" ];
|
|
|
|
bash = {
|
|
|
|
enable = true;
|
|
|
|
enableCompletion = false;
|
|
|
|
};
|
|
|
|
zsh.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"; };
|
2023-03-15 11:52:48 +01:00
|
|
|
bash-preexec = { };
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.bashrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.bashrc \
|
2024-09-08 09:55:05 +02:00
|
|
|
"eval \"\$(@atuin@/bin/atuin init bash --disable-ctrl-r --disable-up-arrow)\""
|
2023-03-15 11:52:48 +01:00
|
|
|
|
|
|
|
assertFileExists home-files/.zshrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
2024-09-08 09:55:05 +02:00
|
|
|
"eval \"\$(@atuin@/bin/atuin init zsh --disable-ctrl-r --disable-up-arrow)\""
|
2023-03-15 11:52:48 +01:00
|
|
|
assertFileExists home-files/.config/fish/config.fish
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.config/fish/config.fish \
|
|
|
|
"@atuin@/bin/atuin init fish --disable-ctrl-r --disable-up-arrow | source"
|
|
|
|
'';
|
|
|
|
}
|