mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-30 01:24:57 +08:00
20 lines
413 B
Nix
20 lines
413 B
Nix
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
|
|
# Optional: Configure settings
|
|
settings = {
|
|
gui = {
|
|
theme = "dark";
|
|
insecureAdminAccess = false;
|
|
};
|
|
options = {
|
|
urAccepted = -1; # Disable usage reporting
|
|
crashReportingEnabled = false;
|
|
announceEnabled = true;
|
|
localAnnounceEnabled = true;
|
|
relaysEnabled = true;
|
|
};
|
|
};
|
|
};
|
|
}
|