nixos-config/nixos/configs/sternchen/syncthing.nix

13 lines
246 B
Nix
Raw Normal View History

2021-03-05 08:22:35 +01:00
{ config, pkgs, lib, ... }: {
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
};
}