dotfiles/hm/shell/atuin.nix
Geoffrey “Frogeye” Preud'homme f5a3708181 atuin: Sync daemon
Didn't seem things were being synced til now,
let's see if it helps.
2025-05-20 02:09:54 +02:00

27 lines
607 B
Nix

{
...
}:
{
config = {
programs.atuin = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
daemon.enable = true;
settings = {
auto_sync = true;
sync_frequency = "5m";
sync_address = "https://atuin.frogeye.fr";
ctrl_n_shortcuts = true; # Cranberry uses Alt for i3
keymap_mode = "vim-insert";
enter_accept = true;
search_mode_shell_up_key_binding = "prefix";
show_tabs = false;
inline_height = 25;
};
flags = [
"--disable-up-arrow"
];
};
};
}