Files
nixos-config/hosts/jason/syncthing.nix
2025-12-20 21:55:07 +00:00

9 lines
172 B
Nix

{user, ...}: {
services.syncthing.settings.folders = {
"Projects/Personal" = {
path = "/Users/${user}/Projects/Personal";
devices = ["tahani" "jason"];
};
};
}