Unverified Commit 72b97427 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

nixos/nextcloud-notify_push: add nextcloud-setup

without it notify might start to early and then fail 5 times before
nextcloud is even ready.
parent 60f124c3
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -83,9 +83,13 @@ in
        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 = {
          NEXTCLOUD_URL = cfg.nextcloudUrl;