15 lines
212 B
Nix
15 lines
212 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.atuin.enable = true;
|
|
|
|
test.stubs = {
|
|
atuin = { name = "atuin"; };
|
|
bash-preexec = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/atuin/config.toml
|
|
'';
|
|
}
|