nix-config/features/services/nextcloud.nix
2024-08-12 15:56:45 +02:00

11 lines
194 B
Nix

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