From a994b2f7618783d8d42edf821f3b51bf08bd868b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 8 Jun 2023 23:52:06 +0200 Subject: [PATCH] fix(nextcloud): add missing MKNOD capability to collabora/office This fixes timeout issues. --- services/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/nextcloud.nix b/services/nextcloud.nix index 5947734..49a0afa 100644 --- a/services/nextcloud.nix +++ b/services/nextcloud.nix @@ -52,7 +52,7 @@ in { aliasgroup2 = mkAlias "cloud.felschr.com"; extra_params = "--o:ssl.enable=false --o:ssl.termination=true"; }; - extraOptions = [ "--network=host" ]; + extraOptions = [ "--network=host" "--cap-add=MKNOD" ]; }; services.nginx.virtualHosts."office.felschr.com" = { forceSSL = true;