nextcloud: pin to version 25 for migration

This commit is contained in:
Lyn Fugmann 2023-08-30 14:01:49 +02:00
parent 2ea2341e1b
commit 39b54503d4
Signed by: fugi
GPG key ID: 4472A20091BFA792

View file

@ -14,7 +14,7 @@ in
services = {
nextcloud = {
enable = true;
package = pkgs.nextcloud26; # Use current latest nextcloud package
package = pkgs.nextcloud25;
enableBrokenCiphersForSSE = false; # disable the openssl warning
hostName = domain;
https = true; # Use https for all urls
@ -26,6 +26,7 @@ in
adminpassFile = config.sops.secrets.nextcloud_adminpass.path;
adminuser = "root";
};
# postgres database is configured automatically
database.createLocally = true;
};