nextcloud: Update the service and apps for 22.11

This commit is contained in:
Tristan Daniël Maat 2023-01-11 01:57:24 +00:00
parent 411e075ef1
commit b798efb2c0
Signed by: tlater
GPG key ID: 49670FD774E43268
6 changed files with 70 additions and 97 deletions
configuration/services

View file

@ -3,14 +3,14 @@
config,
...
}: let
inherit (pkgs) fetchNextcloudApp;
nextcloud = pkgs.nextcloud24;
nextcloud = pkgs.nextcloud25;
hostName = "nextcloud.${config.services.nginx.domain}";
in {
services.nextcloud = {
inherit hostName;
package = nextcloud;
enableBrokenCiphersForSSE = false;
enable = true;
maxUploadSize = "2G";
https = true;
@ -28,12 +28,6 @@ in {
};
extraApps = {
# TODO(tlater): Seems like this won't work anymore from
# Nextcloud 25 onwards.
#
# Adopt whatever upstream does with this:
# https://github.com/nextcloud/server/issues/4917
inherit (pkgs.local) apporder;
inherit (pkgs.local) bookmarks calendar contacts cookbook news notes;
};