Sovran_SystemsOS/modules/onlyoffice.nix

12 lines
186 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-13 14:57:02 -07:00
enableExampleServer = true;
examplePort = 8100;
2023-06-13 14:04:48 -07:00
};
2023-06-13 10:39:57 -07:00
}