cfcd52ff70
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
23 lines
407 B
Nix
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'
|
|
'';
|
|
}
|