home-manager/shell/atuin.nix

18 lines
316 B
Nix
Raw Normal View History

2024-07-30 05:51:43 +00:00
{ ... }:
{
programs = {
atuin = {
enable = true;
enableZshIntegration = true;
2024-08-02 05:22:28 +00:00
flags = [ "--disable-up-arrow" ];
2024-07-30 05:51:43 +00:00
settings = {
auto_sync = true;
sync_frequency = "5m";
sync_address = "https://atuin.molez.org";
update_check = false;
};
};
};
}