nixfiles/modules/desktop/syncthing.nix

14 lines
No EOL
218 B
Nix

{ config, pkgs, ... }:
{
services.syncthing = {
enable = true;
relay.enable = true;
user = "polygon";
dataDir = "/home/polygon/syncthing";
configDir = "/home/polygon/.config/syncthing";
};
}