From e6ed1d8c3bb82b5a963a62bbd0258b5871470884 Mon Sep 17 00:00:00 2001 From: mikl Date: Fri, 10 Jul 2026 15:49:47 +0300 Subject: [PATCH] feat: add atuin for encrypted shell history --- home/cli.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/home/cli.nix b/home/cli.nix index 57a1320..8aab14b 100644 --- a/home/cli.nix +++ b/home/cli.nix @@ -61,6 +61,20 @@ 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 programs.bat = { enable = true;