mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
af2007bb77
This commit adds a module for configuring atuin, a replacement shell history program. The module adds options for generating atuin's `config.toml` from Nix, and options to enable atuin's integration for bash and zsh (which will rebind history keys to open the atuin history).
14 lines
196 B
Nix
14 lines
196 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.atuin.enable = true;
|
|
|
|
test.stubs = {
|
|
atuin = { };
|
|
bash-preexec = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/atuin/config.toml
|
|
'';
|
|
}
|