From dcdaa8200a61533fb5f27bdc81342da55be36696 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 14 Oct 2025 12:06:07 +0200 Subject: [PATCH] feat(services/self_host): nextcloud is now up to date --- services/self_host/nextcloud.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/self_host/nextcloud.nix b/services/self_host/nextcloud.nix index 8dfac1c..1309b73 100644 --- a/services/self_host/nextcloud.nix +++ b/services/self_host/nextcloud.nix @@ -28,9 +28,9 @@ in nextcloud = { enable = true; https = true; - package = pkgs.nextcloud31; + package = pkgs.nextcloud32; hostName = "nextcloud.enium.eu"; - datadir = "/mnt/data/nextcloud/"; + datadir = dataDir; config = { adminpassFile = "/etc/nextcloud-pass.txt"; adminuser = "OwnedByTheEniumTeam"; @@ -46,8 +46,8 @@ in nginx.virtualHosts."nextcloud.enium.eu".enableACME = true; nginx.virtualHosts."nextcloud.enium.eu".forceSSL = true; nginx.virtualHosts."nextcloud.enium.eu".locations."~ \.php$".extraConfig = '' - fastcgi_pass unix:/run/phpfpm-nextcloud.sock; - ''; + fastcgi_pass unix:/run/phpfpm-nextcloud.sock; + ''; }; }; }