2024-01-30 14:21:50 +00:00
|
|
|
{...}: let
|
|
|
|
devices = ["Ion" "Legion" "Northstar" "Vanguard"];
|
2023-11-02 08:18:05 +00:00
|
|
|
in {
|
2024-01-30 14:21:50 +00:00
|
|
|
imports = [./caddy.nix];
|
2023-10-26 16:49:11 +01:00
|
|
|
services.syncthing = {
|
2023-05-06 15:24:31 +01:00
|
|
|
enable = true;
|
|
|
|
systemService = true;
|
2023-11-02 08:18:05 +00:00
|
|
|
overrideDevices = true;
|
|
|
|
overrideFolders = true;
|
2023-05-06 15:24:31 +01:00
|
|
|
openDefaultPorts = true;
|
2023-11-02 08:18:05 +00:00
|
|
|
settings = {
|
|
|
|
devices = {
|
2024-01-30 14:21:50 +00:00
|
|
|
"Ion".id = "7DD4NPH-6T2ET5A-4FCLFWW-CS6UR2W-IO5XQXC-DM5B2Q4-6X7DGU2-UKKVEAB";
|
2024-04-20 17:42:38 +01:00
|
|
|
"Legion".id = "XIJ4CPX-3USDOFM-JLKWEPP-J7MEVKX-LJ6HCCS-YZNHGGC-GDSMZPD-TTVYNAZ";
|
2024-05-11 17:41:51 +01:00
|
|
|
"Northstar".id = "W7JNTCJ-ESF4WJS-ZXZGV2X-OVL2BXY-6R7IYV4-GBABAQT-7J55XTZ-4QJXXA7";
|
2024-04-20 17:31:44 +01:00
|
|
|
"Vanguard".id = "YELFAIP-4VBWPRX-CB7RNJD-RPBQ6KN-CGTMIBO-FK7EPTH-ZXYS6AF-C6WKOQT";
|
2023-06-27 09:54:15 +01:00
|
|
|
};
|
2023-11-02 08:18:05 +00:00
|
|
|
folders = {
|
2024-05-18 07:19:29 +01:00
|
|
|
"Sync" = {
|
|
|
|
inherit devices;
|
|
|
|
id = "fn9cr-ncfas";
|
|
|
|
path = "~/Sync";
|
|
|
|
ignorePerms = true;
|
|
|
|
};
|
2023-11-02 08:18:05 +00:00
|
|
|
"Music" = {
|
2024-04-17 17:48:18 +01:00
|
|
|
inherit devices;
|
2023-11-02 08:18:05 +00:00
|
|
|
id = "munzw-vnxhl";
|
|
|
|
path = "~/Music";
|
|
|
|
ignorePerms = true;
|
|
|
|
};
|
|
|
|
"Pictures" = {
|
|
|
|
inherit devices;
|
|
|
|
id = "ziuj8-rm6dn";
|
|
|
|
path = "~/Pictures";
|
|
|
|
ignorePerms = true;
|
|
|
|
};
|
|
|
|
"Videos" = {
|
|
|
|
inherit devices;
|
|
|
|
id = "mbsop-qteua";
|
|
|
|
path = "~/Videos";
|
|
|
|
ignorePerms = true;
|
|
|
|
};
|
2023-05-09 07:48:19 +01:00
|
|
|
};
|
|
|
|
};
|
2023-05-06 15:24:31 +01:00
|
|
|
};
|
|
|
|
}
|