From dee8a3b6d259f7bc8b85d8774e5a1c981e60e21b Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Thu, 20 Apr 2023 17:21:40 +0000 Subject: [PATCH] Fix sidekiq service name --- disable-services.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disable-services.nix b/disable-services.nix index 1ec45d7..7ff0c73 100644 --- a/disable-services.nix +++ b/disable-services.nix @@ -5,7 +5,7 @@ systemd.services."mastodon-init-dirs".wantedBy = lib.mkForce [ ]; systemd.services."mastodon-media-auto-remove".startAt = lib.mkForce [ ]; systemd.services."mastodon-media-auto-remove".wantedBy = lib.mkForce [ ]; - systemd.services."mastodon-sidekiq".wantedBy = lib.mkForce [ ]; + systemd.services."mastodon-sidekiq-all".wantedBy = lib.mkForce [ ]; systemd.services."mastodon-streaming".wantedBy = lib.mkForce [ ]; systemd.services."mastodon-web".wantedBy = lib.mkForce [ ]; systemd.services."postgresqlBackup-mastodon".startAt = lib.mkForce [ ];