cfcd52ff70
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
20 lines
306 B
Nix
20 lines
306 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
atuin.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
|
|
test.stubs = {
|
|
atuin = { };
|
|
bash-preexec = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.zshrc
|
|
assertFileContains \
|
|
home-files/.zshrc \
|
|
'eval "$(@atuin@/bin/atuin init zsh)"'
|
|
'';
|
|
}
|