10 lines
147 B
Nix
10 lines
147 B
Nix
{ base-domain, ... }:
|
|
let
|
|
fqdn = "syncthing.${base-domain}:8384";
|
|
in
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
guiAddress = fqdn;
|
|
};
|
|
}
|