nix-config/features/services/nextcloud.nix
2024-08-12 16:09:02 +02:00

12 lines
194 B
Nix

{ config, ... }:
{
services.nextcloud = {
enable = true;
hostName = "cloud.hypervirtual.world";
database.createLocally = true;
config = {
dbtype = "pgsql";
};
};
}