mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
15 lines
196 B
Nix
15 lines
196 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs.atuin.enable = true;
|
||
|
|
||
|
test.stubs = {
|
||
|
atuin = { };
|
||
|
bash-preexec = { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-files/.config/atuin/config.toml
|
||
|
'';
|
||
|
}
|