From 3939a7c0cfca35ac7090a7fac8c2bf2c72c5cadd Mon Sep 17 00:00:00 2001 From: Weckyy702 Date: Thu, 30 Jul 2026 09:58:56 +0200 Subject: [PATCH] Tux: Add Synchthing --- modules/hosts/tux/users/weckyy702/weckyy702.nix | 1 + modules/services/syncthing.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/services/syncthing.nix diff --git a/modules/hosts/tux/users/weckyy702/weckyy702.nix b/modules/hosts/tux/users/weckyy702/weckyy702.nix index 66585bd..c94aa7c 100644 --- a/modules/hosts/tux/users/weckyy702/weckyy702.nix +++ b/modules/hosts/tux/users/weckyy702/weckyy702.nix @@ -18,6 +18,7 @@ blueman-applet prusa-slicer backlight + syncthing tux-weckyy702-git ]; diff --git a/modules/services/syncthing.nix b/modules/services/syncthing.nix new file mode 100644 index 0000000..7845583 --- /dev/null +++ b/modules/services/syncthing.nix @@ -0,0 +1,10 @@ +{ + flake.modules.homeManager.syncthing = { + services.syncthing = { + enable = true; + overrideDevices = false; + overrideFolders = false; + settings.options.localAnnounceEnabled = true; + }; + }; +}