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";
|
|
|
|
"Legion".id = "3SSNCLP-ZZKNS65-7CKKGFY-KJYQU6S-P5BM7SB-MMW5ZLM-TMND6IV-ZMUO4AQ";
|
|
|
|
"Northstar".id = "DJVVFUX-QRJNEUZ-OVEQ63J-KJIGNY7-O4MEOMH-GDKYHOB-BQES3O4-C3BJHQ2";
|
|
|
|
"Vanguard".id = "NCJBYBK-JRVFAAN-XO4I5AS-B5L7QD2-5PAMWX7-PHD5FQH-Q2EI32H-U3GF5AA";
|
2023-06-27 09:54:15 +01:00
|
|
|
};
|
2023-11-02 08:18:05 +00:00
|
|
|
folders = {
|
|
|
|
"Music" = {
|
|
|
|
inherit devices;
|
|
|
|
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
|
|
|
};
|
2023-11-20 08:19:13 +00:00
|
|
|
services.caddy.virtualHosts."sync.xenia.me.uk".extraConfig = ''
|
2023-11-20 08:28:17 +00:00
|
|
|
basicauth {
|
2023-11-20 08:33:21 +00:00
|
|
|
evie $2a$14$AwYqa81IWL8lU7B5SrQhlOILZj4VqCgcIn9cte8nytQIP/WhfJoSG
|
2023-11-20 08:19:13 +00:00
|
|
|
}
|
|
|
|
reverse_proxy http://localhost:8384
|
|
|
|
'';
|
2023-05-06 15:24:31 +01:00
|
|
|
}
|