nixos-config/machines/sternchen/syncthing.nix

19 lines
254 B
Nix
Raw Permalink Normal View History

2024-08-29 03:26:04 +02:00
{
config,
pkgs,
lib,
...
}:
{
2021-03-05 08:22:35 +01:00
services.syncthing = {
2021-03-10 19:27:43 +01:00
guiAddress = "localhost:8384";
2021-03-05 08:22:35 +01:00
enable = true;
2021-03-10 19:27:43 +01:00
openDefaultPorts = true;
user = "tina";
dataDir = "/home/tina/.syncthing";
configDir = "/home/tina/.syncthing";
2021-03-05 08:22:35 +01:00
};
}