14 lines
304 B
Nix
14 lines
304 B
Nix
{ config, ... }:
|
|
let port = 8384;
|
|
in
|
|
{
|
|
imports = [ ../../common/optional/services/syncthing.nix ];
|
|
|
|
services.syncthing = {
|
|
settings.folders = { };
|
|
guiAddress = "127.0.0.1:${toString port}";
|
|
};
|
|
|
|
services.nginx.virtualHosts."lapetus.syncthing.moonythm.dev" = config.satellite.proxy port;
|
|
}
|