diff --git a/modules/home/all/syncthing.nix b/modules/home/all/syncthing.nix new file mode 100644 index 0000000..79d9588 --- /dev/null +++ b/modules/home/all/syncthing.nix @@ -0,0 +1,20 @@ +{ + 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; + }; + }; + }; +} diff --git a/modules/home/default.nix b/modules/home/default.nix index 9289afb..f396dcd 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -17,5 +17,7 @@ ./all/juspay.nix ./all/_1password.nix + + ./all/syncthing.nix ]; }