manatee: Sync personal, work and phone-gps, peer phone to org
This commit is contained in:
@@ -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
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user