From 5741421604ba77208924490c67f896914638ba12 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 15 Jul 2023 15:45:42 +0200 Subject: [PATCH] modules: services: nextcloud: enable 'notify_push' --- modules/services/nextcloud/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/services/nextcloud/default.nix b/modules/services/nextcloud/default.nix index ae4bf14..1477c13 100644 --- a/modules/services/nextcloud/default.nix +++ b/modules/services/nextcloud/default.nix @@ -44,6 +44,12 @@ in dbhost = "/run/postgresql"; overwriteProtocol = "https"; # Nginx only allows SSL }; + + notify_push = { + enable = true; + # Allow using the push service without hard-coding my IP in the configuration + bendDomainToLocalhost = true; + }; }; services.postgresql = {