home-manager/tests/modules/programs/atuin/no-shell.nix

31 lines
710 B
Nix
Raw Normal View History

2022-01-20 23:07:29 +01:00
{ lib, ... }:
{
programs = {
atuin = {
enable = true;
enableBashIntegration = false;
enableZshIntegration = false;
2022-01-20 23:07:29 +01:00
enableFishIntegration = false;
};
bash.enable = true;
zsh.enable = true;
2022-01-20 23:07:29 +01:00
fish.enable = true;
};
2022-01-20 23:07:29 +01:00
# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
lib.mkForce (builtins.toFile "empty" "");
test.stubs = {
atuin = { };
bash-preexec = { };
};
nmt.script = ''
2022-01-20 23:07:29 +01:00
assertFileNotRegex home-files/.zshrc 'atuin init zsh'
assertFileNotRegex home-files/.bashrc 'atuin init bash'
assertFileNotRegex home-files/.config/fish/config.fish 'atuin init fish'
'';
}