From 422dec98c7d913c78295cfee152ede22641edc31 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Sat, 4 Oct 2025 09:16:12 +0200 Subject: [PATCH] feat: configure atuin sync server Signed-off-by: Lander Van den Bulcke --- home/lander/features/cli/atuin.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/lander/features/cli/atuin.nix b/home/lander/features/cli/atuin.nix index a4dd48a..dfe099e 100644 --- a/home/lander/features/cli/atuin.nix +++ b/home/lander/features/cli/atuin.nix @@ -3,5 +3,12 @@ programs.atuin = { enable = true; enableZshIntegration = true; + + settings = { + auto_sync = true; + sync_address = "http://atuin.escapeangle.com"; + sync_frequency = "30m"; + update_check = false; + }; }; }