10 lines
No EOL
200 B
Nix
10 lines
No EOL
200 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Enable Syncthing service
|
|
services.syncthing = {
|
|
enable = true;
|
|
# Don't enable tray on macOS as it requires additional setup
|
|
tray.enable = false;
|
|
};
|
|
} |