nextcloud: 31 -> 32

This commit is contained in:
wo2wz 2025-11-10 12:44:49 -05:00
parent a11eb73270
commit f41bbea228

View file

@ -49,7 +49,7 @@
services = { services = {
nextcloud = { nextcloud = {
enable = true; enable = true;
package = pkgs.nextcloud31; package = pkgs.nextcloud32;
hostName = "localhost:8002"; hostName = "localhost:8002";
configureRedis = true; configureRedis = true;
config = { config = {
@ -62,7 +62,6 @@
trusted_proxies = [ "127.0.0.1" "::1" ]; trusted_proxies = [ "127.0.0.1" "::1" ];
}; };
maxUploadSize = "200G";
extraApps = { extraApps = {
inherit (config.services.nextcloud.package.packages.apps) inherit (config.services.nextcloud.package.packages.apps)
calendar calendar
@ -72,6 +71,8 @@
twofactor_webauthn twofactor_webauthn
user_oidc; user_oidc;
}; };
maxUploadSize = "200G";
}; };
}; };