diff options
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/at/atuin/module.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/by-name/at/atuin/module.nix b/modules/by-name/at/atuin/module.nix index 1aec2e74..9e3f46a7 100644 --- a/modules/by-name/at/atuin/module.nix +++ b/modules/by-name/at/atuin/module.nix @@ -39,10 +39,12 @@ in { settings = { key_path = "${config.age.secrets.atuin_encryption_key.path}"; - # TODO: Setup a self-hosted sync server. <2024-10-18> - session_path = ""; - auto_sync = false; - sync_address = ""; + sync = { + # The v2 sync API + records = true; + }; + auto_sync = true; + sync_address = "https://atuin-sync.vhack.eu"; # Use the rather reasonable syntax of `skim` to search. search_mode = "skim"; |