added cache to syncthing

This commit is contained in:
Danilo Reyes 2025-02-15 17:05:34 -06:00
parent 18319e34f1
commit ad0a7290ef

View File

@ -36,25 +36,31 @@ in
miniserver.id = "HDYEGIR-GFU7ONK-MOOJUFH-N3L3XHX-SXWN3FI-O23K6LD-BJENQK5-VIPV2AT";
workstation.id = "4E4KJ6M-MSTNBVF-D7CNHDW-DUTB3VR-SXKZ4NH-ZKAOMF5-V24JECJ-4STSZAA";
};
folders.gdl = {
path = "/home/jawz/.config/jawz/";
devices = [
"server"
"miniserver"
"workstation"
];
ignorePerms = false;
};
folders.librewolf = {
path = "/home/jawz/.librewolf/";
copyOwnershipFromParent = true;
type = if config.networking.hostName == "workstation" then "sendonly" else "receiveonly";
devices = [
"server"
"miniserver"
"workstation"
];
ignorePerms = false;
folders = {
cache = {
path = "/home/jawz/Downloads/cache/";
ignorePerms = false;
};
gdl = {
path = "/home/jawz/.config/jawz/";
ignorePerms = false;
devices = [
"server"
"miniserver"
"workstation"
];
};
librewolf = {
path = "/home/jawz/.librewolf/";
ignorePerms = false;
copyOwnershipFromParent = true;
type = if config.networking.hostName == "workstation" then "sendonly" else "receiveonly";
devices = [
"server"
"miniserver"
"workstation"
];
};
};
};
};