fix: added nextcloud missing args

This commit is contained in:
chloe 2024-08-12 17:45:03 +02:00
parent f95f763a6d
commit 16836bc4f2
2 changed files with 6 additions and 2 deletions

View file

@ -1,11 +1,14 @@
{ config, ... }:
{
sops.secrets.adminNextcloudPass = { };
services.nextcloud = {
enable = true;
hostName = "cloud.hypervirtual.world";
database.createLocally = true;
config = {
dbtype = "pgsql";
adminpassFile = config.services.nextcloud.adminNextcloudPass;
};
};
}