config.nix/modules/syncthing/default.nix
2025-12-18 18:06:02 +01:00

20 lines
183 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options = {
};
config = {
programs = {
syncthing = {
enable = true;
tray.enable = true;
};
};
};
}