feat: add atuin for encrypted shell history

This commit is contained in:
mikl 2026-07-10 15:49:47 +03:00
parent dee3e58978
commit e6ed1d8c3b

View file

@ -61,6 +61,20 @@
options = [ "--cmd cd" ]; options = [ "--cmd cd" ];
}; };
# Atuin - encrypted shell history with sync
programs.atuin = {
enable = true;
enableZshIntegration = true;
settings = {
auto_sync = true;
sync_frequency = "5m";
search_mode = "fuzzy";
style = "compact";
show_preview = true;
exit_mode = "return-query";
};
};
# Bat - cat with syntax highlighting # Bat - cat with syntax highlighting
programs.bat = { programs.bat = {
enable = true; enable = true;