diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-05 14:17:53 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-05 14:17:53 +0200 |
commit | 8eae32581e0aea6b72b19356c953738e8ca9c639 (patch) | |
tree | 737ff7b26e0950b8b2dd71935b35f6f2f00a0d42 | |
parent | pkgs/mpp: Avoid unbound variable error (diff) | |
download | nixos-config-8eae32581e0aea6b72b19356c953738e8ca9c639.zip |
modules/atuin: Use the new sync server prime
-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"; |