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