nix/modules/services/syncthing/default.nix

10 lines
146 B
Nix
Raw Normal View History

2024-08-31 16:04:57 +02:00
{...}: {
services = {
syncthing = {
enable = true;
user = "joy";
configDir = "/home/joy/.config/syncthing";
};
};
}