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