From c0f01d143e56669d4ea174ddc882d8c6ca85f55c Mon Sep 17 00:00:00 2001 From: Nikkuss Date: Wed, 2 Apr 2025 21:34:48 +0400 Subject: [PATCH] disable http server --- lib.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib.nix b/lib.nix index eadc67d..f784d01 100644 --- a/lib.nix +++ b/lib.nix @@ -43,7 +43,8 @@ in inherit name; text = '' - PC_CONFIG_FILES=${configFile} RUNTIME_PATH=$(pwd)/${runtime} ${pkgs.process-compose}/bin/process-compose "$@" + + PC_NO_SERVER=true PC_CONFIG_FILES=${configFile} RUNTIME_PATH=$(pwd)/${runtime} ${pkgs.process-compose}/bin/process-compose "$@" ''; }; mkPostgres = import ./services/postgres.nix { inherit pkgs; };