depot/third_party/home-manager/tests/modules/programs/atuin/bash.nix

24 lines
360 B
Nix
Raw Normal View History

{ ... }:
{
programs = {
atuin.enable = true;
bash = {
enable = true;
enableCompletion = false;
};
};
test.stubs = {
atuin = { };
bash-preexec = { };
};
nmt.script = ''
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
'eval "$(@atuin@/bin/atuin init bash )"'
'';
}