1
0
Fork 0
puter/common/syncthing.nix

15 lines
300 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{ config, ... }:
let
2025-03-30 16:22:14 +00:00
inherit (config.networking) hostName;
2025-05-11 22:49:04 +02:00
in
{
2024-12-01 04:05:16 +01:00
services.syncthing = {
enable = true;
2025-01-18 17:25:41 +01:00
systemService = true;
openDefaultPorts = true;
2025-03-30 16:22:14 +00:00
guiAddress = "${hostName}.tailnet.helveticanonstandard.net:4000";
2024-12-01 04:05:16 +01:00
overrideDevices = false;
overrideFolders = false;
};
}