nixos/modules/services/onlyoffice.nix

13 lines
291 B
Nix

{ ... }:
{
services.onlyoffice = {
enable = true;
hostname = "onlyoffice.crans.org";
postgresHost = "tealc.adm.crans.org";
postgresName = "onlyoffice";
postgresUser = "onlyoffice";
postgresPasswordFile = sops.secrets.onlyoffice-sliding-sync-pass-file.path;
};
}