Add syncthing to alt

This commit is contained in:
Alexander Wainwright 2025-12-24 00:58:49 +10:00
parent 717f75ef94
commit c565a01115
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, inputs, ... }:
{
# sync thing
services.syncthing = {
enable = true;
openDefaultPorts = true;
user = "alex";
configDir = "/home/alex/.config/syncthing";
dataDir = "/home/alex";
};
}