From 50a2d3bee0fbba52e33d8c50fa960b1fb88c09aa Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Sun, 25 Jan 2026 23:30:06 -0700 Subject: [PATCH] oops --- modules/home/syncthing.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/home/syncthing.nix diff --git a/modules/home/syncthing.nix b/modules/home/syncthing.nix new file mode 100644 index 0000000..eb85132 --- /dev/null +++ b/modules/home/syncthing.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ + services.syncthing = { + enable = true; + dataDir = "${config.home.homeDirectory}/syncthing/data"; + configDir = "${config.home.homeDirectory}/syncthing/conf"; + }; +}