flakes/modules/services/syncthing.nix

23 lines
523 B
Nix
Raw Normal View History

2025-04-24 22:40:09 +10:00
{ ... }: {
systemd.services.syncthing.environment.STNODEFAULTFOLDER = "true";
services.syncthing = {
enable = true;
openDefaultPorts = true;
user = "rin";
group = "users";
dataDir = "/persist/shared/.syncthing/data";
configDir = "/persist/shared/.syncthing/config";
settings = {
devices = {
#"anemone".id = "";
};
# folders = {
# "Obby" = {
# path = "/home/rin/Documents/Obby/Obby";
# devices = [];
# };
# };
};
};
}