From b8cc237bccd73194caf5d77f2a4b021ea67231fc Mon Sep 17 00:00:00 2001 From: albert Date: Sun, 28 Apr 2024 14:06:03 +0900 Subject: [PATCH] update with atuin --- home-manager/common/software/cli/atuin.nix | 5 +++-- nixos/common/services/atuin.nix | 9 --------- 2 files changed, 3 insertions(+), 11 deletions(-) delete mode 100644 nixos/common/services/atuin.nix diff --git a/home-manager/common/software/cli/atuin.nix b/home-manager/common/software/cli/atuin.nix index 131b35bb..71d2f21b 100644 --- a/home-manager/common/software/cli/atuin.nix +++ b/home-manager/common/software/cli/atuin.nix @@ -7,9 +7,10 @@ enableZshIntegration = true; settings = { auto_sync = true; - sync_frequency = "5m"; - sync_address = "framework-server:8888"; + sync_frequency = "0"; + sync_address = "https://atuin.sysctl.io"; search_mode = "prefix"; + secrets_filter = true; }; }; } diff --git a/nixos/common/services/atuin.nix b/nixos/common/services/atuin.nix deleted file mode 100644 index 9e5ef945..00000000 --- a/nixos/common/services/atuin.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ ... }: { - services.atuin = { - enable = true; - port = 8888; - database.createLocally = true; - openRegistration = true; - }; - networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 8888 ]; -}