quasar/syncthing.nix

11 lines
147 B
Nix
Raw Normal View History

2024-10-03 14:54:38 +02:00
{ base-domain, ... }:
let
fqdn = "syncthing.${base-domain}:8384";
in
{
services.syncthing = {
enable = true;
guiAddress = fqdn;
};
}