manatee: Sync personal, work and phone-gps, peer phone to org

This commit is contained in:
Alexander Heldt
2026-08-16 13:41:52 +00:00
parent 0a5da7a293
commit 7a170ff59c
@@ -39,6 +39,7 @@ in
}; };
devices = { devices = {
phone.id = config.lib.syncthing.phone;
pinwheel.id = config.lib.syncthing.pinwheel; pinwheel.id = config.lib.syncthing.pinwheel;
}; };
@@ -46,6 +47,7 @@ in
org = { org = {
path = "/mnt/sync/public/org"; path = "/mnt/sync/public/org";
devices = [ devices = [
"phone"
"pinwheel" "pinwheel"
]; ];
versioning = { versioning = {
@@ -55,6 +57,39 @@ in
}; };
}; };
}; };
personal = {
path = "/mnt/sync/public/personal";
devices = [ "pinwheel" ];
versioning = {
type = "staggered";
params = {
maxage = "2592000"; # 30 days
};
};
};
work = {
path = "/mnt/sync/public/work";
devices = [ "pinwheel" ];
versioning = {
type = "staggered";
params = {
maxage = "2592000"; # 30 days
};
};
};
"phone-gps" = {
path = "/mnt/sync/public/phone-gps";
devices = [ "phone" ];
versioning = {
type = "staggered";
params = {
maxage = "2592000"; # 30 days
};
};
};
}; };
}; };
}; };