zion/modules/datasync.nix

119 lines
2.9 KiB
Nix
Raw Normal View History

2020-06-09 21:53:20 +02:00
{ config, pkgs, lib, ... }: {
# Syncthing configuration
2019-11-07 14:25:27 +01:00
services.syncthing = {
enable = true;
openDefaultPorts = true;
guiAddress = "0.0.0.0:8384";
dataDir = "/vault/syncthing";
2022-06-06 23:12:54 +02:00
key = config.age.secrets.syncthing.path;
2021-08-13 11:00:59 +02:00
devices = {
panacea.id =
"NF4SYEJ-RSGPDEF-CDEYC3A-JWZMKNC-KG4FVQP-CZ5HRFY-XM22BZD-N7B6VAH";
caravanserai.id =
2022-12-10 16:59:29 +01:00
"MIRF73R-S7AV47R-VLWZUK2-TFCVQPV-FRYCPND-Y4VR3W2-ZAIQXZD-JAEQCAD";
2021-08-13 11:00:59 +02:00
};
2023-07-27 00:14:13 +02:00
extraOptions = {
options = {
maxFolderConcurrency = 4;
progressUpdateIntervalS = -1;
};
};
2021-08-13 11:00:59 +02:00
folders = {
Documents = {
id = "wusdj-bfjkr";
type = "receiveonly";
path = "/vault/syncthing/Documents";
devices = [ "panacea" "caravanserai" ];
2019-11-07 14:25:27 +01:00
};
2020-02-25 14:03:24 +01:00
2021-08-13 11:00:59 +02:00
Notes = {
id = "kafhz-bfmzm";
type = "receiveonly";
path = "/vault/syncthing/Notes";
devices = [ "panacea" "caravanserai" ];
};
2020-02-25 14:03:24 +01:00
2021-08-13 11:00:59 +02:00
Music = {
id = "2aqt7-vpprc";
type = "receiveonly";
path = "/vault/syncthing/Music";
devices = [ "panacea" "caravanserai" ];
};
2020-02-25 14:03:24 +01:00
2021-08-13 11:00:59 +02:00
Photos = {
id = "mjibc-ustcg";
type = "receiveonly";
path = "/vault/syncthing/Photos";
devices = [ "panacea" "caravanserai" ];
};
2020-02-25 14:03:24 +01:00
2021-08-13 11:00:59 +02:00
Projects = {
id = "cjhmu-avy9v";
type = "receiveonly";
path = "/vault/syncthing/Projects";
devices = [ "panacea" ];
};
2020-12-22 03:45:30 +01:00
2021-08-13 11:00:59 +02:00
Phone = {
id = "m2007j20cg_vc7r-photos";
2021-08-13 11:00:59 +02:00
type = "receiveonly";
path = "/vault/syncthing/Photos/Phone";
devices = [ "panacea" "caravanserai" ];
};
2020-12-22 03:45:30 +01:00
2021-08-13 11:00:59 +02:00
Files = {
id = "tsk52-u6rbk";
type = "receiveonly";
path = "/vault/syncthing/Files";
devices = [ "panacea" "caravanserai" ];
};
Phone-screenshots = {
id = "pp70r-pbr70";
type = "receiveonly";
path = "/vault/syncthing/Photos/Phone-screenshots";
devices = [ "panacea" "caravanserai" ];
};
2023-08-08 03:37:41 +02:00
Audio = {
id = "tarrs-5mxck";
type = "receiveonly";
path = "/vault/syncthing/Audio";
devices = [ "panacea" "caravanserai" ];
};
2019-11-07 14:25:27 +01:00
};
};
# Enable Radicale
services.radicale = {
enable = true;
settings = {
server.hosts = [ "127.0.0.1:5232" ];
auth = {
type = "htpasswd";
htpasswd_filename = "/vault/radicale/users";
htpasswd_encryption = "md5";
delay = 1;
};
storage.filesystem_folder = "/vault/radicale/collections";
};
2019-11-07 14:25:27 +01:00
};
# ZFS automatic snapshots
services.zfs.autoSnapshot = {
2020-06-20 02:00:59 +02:00
enable = true;
frequent = 4;
hourly = 24;
daily = 7;
weekly = 4;
monthly = 12;
2020-06-20 02:00:59 +02:00
};
2023-06-08 18:30:16 +02:00
# Start services after ZFS mount
systemd.services.syncthing.unitConfig.RequiresMountsFor =
[ /vault/syncthing ];
systemd.services.radicale.unitConfig.RequiresMountsFor = [ /vault/radicale ];
2023-06-08 18:30:16 +02:00
2019-11-07 14:25:27 +01:00
}