From 5558c2dce90bb7c8ad6c68d3560207ca9eef9f5f Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 12 Jun 2026 17:15:37 +0200 Subject: [PATCH] chore: updates nextcloud values to latest ones, still cannot get it to work properly --- modules/services/nextcloud.nix | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/modules/services/nextcloud.nix b/modules/services/nextcloud.nix index 06b8f04..4daa98c 100644 --- a/modules/services/nextcloud.nix +++ b/modules/services/nextcloud.nix @@ -2,28 +2,34 @@ { services.nextcloud = { enable = true; - home = "/spinners/applications/nextcloud/"; - package = pkgs.nextcloud32; + home = "/spinners/applications/nextcloud2"; + caching.apcu = true; + configureRedis = true; + caching.redis = true; + package = pkgs.nextcloud33; hostName = "cloud.liv.town"; - # appstoreEnable = true; + appstoreEnable = false; + autoUpdateApps.enable = false; https = true; maxUploadSize = "10G"; + extraAppsEnable = true; extraApps = { inherit (config.services.nextcloud.package.packages.apps) - news + # news contacts calendar groupfolders - notify_push + # notify_push ; }; + notify_push.enable = true; config = { adminuser = "root"; adminpassFile = config.sops.secrets.nextcloudPassword.path; dbtype = "sqlite"; }; - configureRedis = true; settings = { + appstoreenabled = false; mail_smtpmode = "smtp"; mail_sendmailmode = "smtp"; mail_from_address = "noreply";