diff --git a/hosts/backwards/modules/syncthing/default.nix b/hosts/backwards/modules/syncthing/default.nix new file mode 100644 index 0000000..177406c --- /dev/null +++ b/hosts/backwards/modules/syncthing/default.nix @@ -0,0 +1,12 @@ +{ ... }: +{ + services.syncthing = { + enable = true; + openDefaultPorts = true; + + user = "alex"; + group = "users"; + + dataDir = "/home/alex/sync"; + }; +}