chore: updates nextcloud values to latest ones, still cannot get it to work properly

This commit is contained in:
Ahwx 2026-06-12 17:15:37 +02:00
parent 05361f0d28
commit 5558c2dce9

View file

@ -2,28 +2,34 @@
{ {
services.nextcloud = { services.nextcloud = {
enable = true; enable = true;
home = "/spinners/applications/nextcloud/"; home = "/spinners/applications/nextcloud2";
package = pkgs.nextcloud32; caching.apcu = true;
configureRedis = true;
caching.redis = true;
package = pkgs.nextcloud33;
hostName = "cloud.liv.town"; hostName = "cloud.liv.town";
# appstoreEnable = true; appstoreEnable = false;
autoUpdateApps.enable = false;
https = true; https = true;
maxUploadSize = "10G"; maxUploadSize = "10G";
extraAppsEnable = true;
extraApps = { extraApps = {
inherit (config.services.nextcloud.package.packages.apps) inherit (config.services.nextcloud.package.packages.apps)
news # news
contacts contacts
calendar calendar
groupfolders groupfolders
notify_push # notify_push
; ;
}; };
notify_push.enable = true;
config = { config = {
adminuser = "root"; adminuser = "root";
adminpassFile = config.sops.secrets.nextcloudPassword.path; adminpassFile = config.sops.secrets.nextcloudPassword.path;
dbtype = "sqlite"; dbtype = "sqlite";
}; };
configureRedis = true;
settings = { settings = {
appstoreenabled = false;
mail_smtpmode = "smtp"; mail_smtpmode = "smtp";
mail_sendmailmode = "smtp"; mail_sendmailmode = "smtp";
mail_from_address = "noreply"; mail_from_address = "noreply";