nixos/nextcloud-notify_push: add nextcloud-setup

without it notify might start to early and then fail 5 times before
nextcloud is even ready.

Changed files
+4
nixos
modules
services
+4
nixos/modules/services/web-apps/nextcloud-notify_push.nix
···
description = "Push daemon for Nextcloud clients";
documentation = [ "https://github.com/nextcloud/notify_push" ];
after = [
+
"nextcloud-setup.service"
"phpfpm-nextcloud.service"
"redis-nextcloud.service"
+
];
+
requires = [
+
"nextcloud-setup.service"
];
wantedBy = [ "multi-user.target" ];
environment = {