depot/third_party/home-manager/tests/modules/programs/atuin/bash.nix
Default email 75fa0ae5af Project import generated by Copybara.
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
2023-08-08 12:19:01 +02:00

23 lines
360 B
Nix

{ ... }:
{
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 )"'
'';
}