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; + }; + }; +}