mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-14 19:53:07 +02:00
9 lines
209 B
Nix
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; } ];
|
||
|
}
|