feat: remove syncthing

This commit is contained in:
toast 2025-10-04 16:20:45 +09:00
parent 3839b0a832
commit 30410d805c
2 changed files with 0 additions and 24 deletions

View file

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

View file

@ -1,23 +0,0 @@
{
services.syncthing = {
enable = true;
user = "toast";
group = "users";
configDir = "/home/toast/.config/syncthing";
extraFlags = [ "--no-default-folder" ];
overrideDevices = true;
overrideFolders = true;
settings = {
devices = {
"phone" = { id = "XIRT2YS-3PZY7PF-PL4QTYK-LCYCSKW-GARN5N6-KBWGSP6-YZDQGED-N7R6YQF"; };
"tablet" = { id = "BCSESXD-F5NOKTH-QPTHZEY-XITQPKC-BVWMA36-YM72QIS-JOUPIGN-2S7LRAU"; };
};
folders = {
"obsidian" = {
path = "/data/Backup/Obsidian/";
devices = [ "phone" "tablet" ];
};
};
};
};
}