Sovran_SystemsOS/modules/onlyoffice.nix

19 lines
349 B
Nix
Raw Normal View History

2023-06-13 10:39:57 -07:00
{config, pkgs, lib, ...}:
let
personalization = import ./personalization.nix;
in
{
services.onlyoffice = {
enable = true;
2023-06-14 18:50:28 -07:00
jwtSecretFile = "${personalization.onlyofficejwtSecretFile}";
2023-06-13 14:04:48 -07:00
};
2023-06-13 15:25:58 -07:00
services.nginx.defaultSSLListenPort = 9443;
services.nginx.defaultHTTPListenPort = 9080;
2023-06-16 09:15:37 -07:00
config.services.epmd.listenStream = "127.0.0.1:4369";
2023-06-13 15:25:58 -07:00
}