nix/modules/syncthing/default.nix
2024-07-09 22:20:44 +02:00

13 lines
171 B
Nix

{ ... }:
{
services = {
syncthing = {
enable = true;
user = "joy";
dataDir = "/home/joy/";
configDir = "/home/joy/.config/syncthing";
};
};
}