From d5b711f10ac8a1515fadbca0408e1c425b06e79c Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Sat, 15 Aug 2026 10:59:47 +0200 Subject: [PATCH] Install atuin with ai enabled --- homes/julian/features/fish/default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/homes/julian/features/fish/default.nix b/homes/julian/features/fish/default.nix index 9654260..c1751f5 100644 --- a/homes/julian/features/fish/default.nix +++ b/homes/julian/features/fish/default.nix @@ -32,6 +32,29 @@ with lib; { enableFishIntegration = true; }; + programs.atuin = { + enable = true; + enableFishIntegration = true; + daemon.enable = true; + settings = { + auto_sync = false; + ai = { + enabled = true; + capabilites = { + enable_file_tools = false; + enable_command_execution = false; + enable_history_output = false; + enable_history_search = true; + }; + opening = { + # The context sent to the ai + send_cwd = false; + send_last_command = false; + }; + }; + }; + }; + programs.fish = { enable = true;