1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/atuin/no-shell.nix
2022-01-25 00:21:31 +01:00

32 lines
726 B
Nix

{ lib, ... }:
{
programs = {
atuin = {
enable = true;
enableBashIntegration = false;
enableZshIntegration = false;
enableFishIntegration = false;
};
bash.enable = true;
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 = {
atuin = { };
bash-preexec = { };
fish = { };
};
nmt.script = ''
assertFileNotRegex home-files/.zshrc 'atuin init zsh'
assertFileNotRegex home-files/.bashrc 'atuin init bash'
assertFileNotRegex home-files/.config/fish/config.fish 'atuin init fish'
'';
}