From d8b479ddf7f10c2c188584ec79dfa3996ca852bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Tue, 29 Sep 2020 15:19:43 +0100 Subject: [PATCH] Add access to the nextcloud network to the nextcloud cron service This is apparently required for certain update operations, should not have been missing originally. --- etc/nixos/services/nextcloud.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etc/nixos/services/nextcloud.nix b/etc/nixos/services/nextcloud.nix index c4c57dd..320b720 100644 --- a/etc/nixos/services/nextcloud.nix +++ b/etc/nixos/services/nextcloud.nix @@ -33,6 +33,9 @@ "--volumes-from" "nextcloud" ]; + networks = [ + "nextcloud" + ]; }; nextcloud-nginx = {