From 136564a332f9c8434fee6683c90c44e97323a3a5 Mon Sep 17 00:00:00 2001 From: Kris Date: Thu, 19 Feb 2026 21:49:41 +0200 Subject: [PATCH] fix --- modules/wafrn.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/wafrn.nix b/modules/wafrn.nix index bdfe939..3dcc75d 100644 --- a/modules/wafrn.nix +++ b/modules/wafrn.nix @@ -198,7 +198,7 @@ let redis = { condition = "service_started"; }; frontend = { condition = "service_started"; }; }; - command = "npm exec tsx migrate.ts init-container"; + command = [ "npm" "exec" "tsx" "migrate.ts" "init-container" ]; }; frontend = serviceCommon // frontendContainerSpec // { @@ -239,7 +239,7 @@ let } // optionalAttrs cfg.bluesky.enable { pds_worker = serviceCommon // backendContainerSpec // { - command = "npm exec tsx atproto.ts"; + command = [ "npm" "exec" "tsx" "atproto.ts" ]; depends_on = { db = { condition = "service_started"; }; redis = { condition = "service_started"; };