1
0
Fork 0

Update nextcloud service option names.

This commit is contained in:
Kevin Baensch 2024-02-26 16:31:13 +01:00
parent a082c16b94
commit 56d9b357b5
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,6 @@ with lib;
in {
nextcloud = {
enable = true;
enableBrokenCiphersForSSE = false;
home = "/var/lib/nextcloud";
hostName = domain;
https = true;
@ -23,13 +22,14 @@ with lib;
adminuser = mkDefault (elemAt cfg.administrators 0).name;
adminpassFile = config.sops.secrets."services/nextcloud/adminPass".path;
dbtype = "mysql";
dbhost = "localhost";
dbport = "3306";
dbhost = "localhost:3306";
dbuser = "nextcloud";
dbpassFile = config.sops.secrets."services/nextcloud/dbPass".path;
dbname = "nextcloud";
dbtableprefix = "oc_";
extraTrustedDomains = cfg.extraDomains;
};
settings = {
trusted_domains = cfg.extraDomains;
};
caching = {
apcu = true;