From d5f73624aaa63ab53f1795366d59bff84ecee8e2 Mon Sep 17 00:00:00 2001 From: D Anzorge Date: Thu, 15 Apr 2021 18:36:58 +0200 Subject: [PATCH] nix: don't run in debug mode --- nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index 089c03957..e618cd9a3 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -13,7 +13,7 @@ let else "redis://${cfg.celeryRedis.host}:${toString cfg.celeryRedis.port}/0"; env = { - DEBUG = "true"; + DEBUG = "false"; DOMAIN = cfg.domain; BOOKWYRM_DATABASE_BACKEND = "postgres"; MEDIA_ROOT = (builtins.toPath cfg.stateDir) + "/images";