nix/modules/syncthing/default.nix

13 lines
171 B
Nix
Raw Normal View History

2024-07-09 22:20:44 +02:00
{ ... }:
{
services = {
syncthing = {
enable = true;
user = "joy";
dataDir = "/home/joy/";
configDir = "/home/joy/.config/syncthing";
};
};
}