mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
14 lines
304 B
Nix
14 lines
304 B
Nix
{ config, ... }:
|
|
{
|
|
sops.secrets.adminNextcloudPass = { };
|
|
services.nextcloud = {
|
|
|
|
enable = true;
|
|
hostName = "cloud.hypervirtual.world";
|
|
database.createLocally = true;
|
|
config = {
|
|
dbtype = "pgsql";
|
|
adminpassFile = config.services.nextcloud.adminNextcloudPass;
|
|
};
|
|
};
|
|
}
|