nixos-dotfiles/hosts/titan/services/office.nix
Alex Stan eb5f9fc1c7 mentally draining stuff
Signed-off-by: Alex Stan <alex.stan.2010@proton.me>
2024-02-28 23:20:48 +02:00

9 lines
209 B
Nix

inputs: { ... }: {
services.onlyoffice = {
enable = true;
hostname = "localhost";
port = 3005;
};
services.nginx.virtualHosts."localhost".listen = [ { addr = "127.0.0.1"; port = 3005; } ];
}