nix/modules/services/syncthing/default.nix
2024-08-31 16:04:57 +02:00

10 lines
146 B
Nix

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