From cc35c13e2db058960c624a6ef2a2df1b03a8d287 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 2 Dec 2025 16:48:55 -0600 Subject: [PATCH] feat: added elastic search script to mastodon --- modules/nixos/guests/mastodon/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/nixos/guests/mastodon/default.nix b/modules/nixos/guests/mastodon/default.nix index b279932..a59dda4 100755 --- a/modules/nixos/guests/mastodon/default.nix +++ b/modules/nixos/guests/mastodon/default.nix @@ -280,10 +280,9 @@ in serviceConfig = { WorkingDirectory = "/var/lib/${serviceCfg.name}"; Type = "oneshot"; - # Remove RemainAfterExit for recurring tasks }; script = '' - mastodon-tootctl search deploy --only-mapping --only=instances accounts tags statuses public_statuses + ${pkgs.mastodon}/bin/mastodon-tootctl search deploy --only-mapping --only=instances accounts tags statuses public_statuses ''; };