Matrix migration + coturn test

This commit is contained in:
Aleksandr Lebedev 2025-10-12 23:59:54 +02:00
parent 8990d85503
commit ca80a34135
5 changed files with 140 additions and 26 deletions

View file

@ -16,6 +16,7 @@ with lib.custom; {
sops.secrets."services/nextcloud" = {owner = "nextcloud";};
services.nextcloud = {
enable = true;
package = pkgs.nextcloud32;
database.createLocally = true;
config = {
dbtype = "pgsql";
@ -23,5 +24,12 @@ with lib.custom; {
};
hostName = "nextcloud.kylekrein.com";
https = true;
extraApps = {
inherit (config.services.nextcloud.package.packages.apps) contacts calendar tasks whiteboard;
};
autoUpdateApps.enable = true;
extraAppsEnable = true;
configureRedis = false;
};
}