mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
215af6252d
Co-authored-by: Janik H <janik@aq0.de>
23 lines
360 B
Nix
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 )"'
|
|
'';
|
|
}
|