nix/modules/syncthing/default.nix

10 lines
146 B
Nix
Raw Normal View History

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