feat: add syncthing

This commit is contained in:
Jacob Bachmann 2024-03-26 11:58:37 +01:00
parent 608dd81dc1
commit ce2b2501a1
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
3 changed files with 24 additions and 0 deletions

13
modules/syncthing.nix Normal file
View file

@ -0,0 +1,13 @@
{ ... }: {
services.syncthing = {
enable = true;
openDefaultPorts = true;
user = "gandalf";
dataDir = "/home/gandalf";
overrideFolders = true;
};
}