From 4257fc74ddf31162a417541e2da678828d09dfc2 Mon Sep 17 00:00:00 2001 From: theBreadCompany Date: Mon, 7 Apr 2025 16:55:50 +0200 Subject: [PATCH] fix service --- fxpixiv.service.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fxpixiv.service.nix b/fxpixiv.service.nix index 9b3f95c..fbd4518 100755 --- a/fxpixiv.service.nix +++ b/fxpixiv.service.nix @@ -37,9 +37,9 @@ in serviceConfig.EnvironmentFile = pkgs.writeTextFile { name = "fxpixiv.env"; text = '' - "ROCKET_ENV=release" - "ROCKET_PORT=${toString config.services.fxpixiv.port}" - "PIXIV_REFRESH_TOKEN=${toString config.services.fxpixiv.refreshToken}" + ROCKET_ENV=release + ROCKET_PORT=${toString config.services.fxpixiv.port} + PIXIV_REFRESH_TOKEN=${toString config.services.fxpixiv.refreshToken} ''; meta.mode = "0600"; };