10 lines
122 B
Nix
10 lines
122 B
Nix
{ lib, ... }:
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
tray = {
|
|
enable = lib.mkDefault true;
|
|
};
|
|
};
|
|
}
|