nixos-config/nixos/configs/sternchen/syncthing.nix
2021-09-25 20:28:25 +02:00

12 lines
246 B
Nix

{ config, pkgs, lib, ... }: {
services.syncthing = {
guiAddress = "localhost:8384";
enable = true;
openDefaultPorts = true;
user = "tina";
dataDir = "/home/tina/.syncthing";
configDir = "/home/tina/.syncthing";
};
}