home-manager/shell/atuin.nix

17 lines
276 B
Nix
Raw Normal View History

2024-07-30 05:51:43 +00:00
{ ... }:
{
programs = {
atuin = {
enable = true;
enableZshIntegration = true;
settings = {
auto_sync = true;
sync_frequency = "5m";
sync_address = "https://atuin.molez.org";
update_check = false;
};
};
};
}