feat(nixos): add syncthing

This commit is contained in:
lightly-toasted 2025-09-06 19:41:11 +09:00
parent e48531001b
commit d887ce84e1
2 changed files with 7 additions and 0 deletions

View file

@ -7,5 +7,6 @@
./tailscale.nix ./tailscale.nix
./flatpak.nix ./flatpak.nix
./restic.nix ./restic.nix
./syncthing.nix
]; ];
} }

View file

@ -0,0 +1,6 @@
{
services.syncthing = {
enable = true;
extraFlags = [ "--no-default-folder" ];
};
}