depot/third_party/home-manager/tests/modules/programs/atuin/no-shell.nix
Default email cfcd52ff70 Project import generated by Copybara.
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
2021-11-05 00:42:44 +08:00

23 lines
407 B
Nix

{ ... }:
{
programs = {
atuin = {
enable = true;
enableBashIntegration = false;
enableZshIntegration = false;
};
bash.enable = true;
zsh.enable = true;
};
test.stubs = {
atuin = { };
bash-preexec = { };
};
nmt.script = ''
assertFileNotRegex home-files/.zshrc '@atuin@ init zsh'
assertFileNotRegex home-files/.bashrc '@atuin@ init bash'
'';
}