From 76ab7d3f0e576bf2087a09609cd8b52840eba691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 17 May 2023 19:05:32 +0200 Subject: [PATCH] Fix eval --- config/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.nix b/config/default.nix index f24fbdd7..26260482 100644 --- a/config/default.nix +++ b/config/default.nix @@ -227,7 +227,7 @@ postgresql = lib.mkIf config.services.postgresql.enable { # default is 1024 which was not enough for mastodon and leading to errors like the following which crash postgresql: # could not close file "./global/176529": Too many open files - serviceConfig.LimitNOFile = toString 1024*32; + serviceConfig.LimitNOFile = 1024*32; }; };