nixos-config/old-machines/sternchen/syncthing.nix

18 lines
254 B
Nix

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