From 2aa6dd2aa70988f194d948196dbdc4f401e09a5d Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 22 Jun 2025 17:14:16 +0100 Subject: [PATCH] hosts/library: fix jellysearch service --- hosts/library/jellysearch.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/library/jellysearch.nix b/hosts/library/jellysearch.nix index 6a16a82..159a2fa 100644 --- a/hosts/library/jellysearch.nix +++ b/hosts/library/jellysearch.nix @@ -35,7 +35,7 @@ StateDirectory = "jellysearch"; StateDirectoryMode = "0750"; WorkingDirectory = "/var/lib/jellysearch"; - EnivronmentFile = config.age.secrets."files/services/meilisearch/envfile".path; + EnvironmentFile = config.age.secrets."files/services/meilisearch/envfile".path; NoNewPrivileges = true; SystemCallArchitectures = "native"; @@ -51,7 +51,7 @@ DOTNET_ENVIRONMENT = "Production"; INDEX_CRON = "0 0 0/2 ? * * *"; JELLYFIN_URL = "http://localhost:8096"; - JELLYFIN_CONFIG_DIR = "${toString config.services.jellyfin.configDir}"; + JELLYFIN_CONFIG_DIR = "${toString config.services.jellyfin.dataDir}"; MEILI_URL = "http://localhost:${toString config.services.meilisearch.listenPort}"; }; };