zion/modules/datasync.nix

81 lines
1.8 KiB
Nix
Raw Normal View History

# Syncthing and Radicale configuration
2020-06-09 21:53:20 +02:00
{ config, pkgs, lib, ... }: {
2019-11-07 14:25:27 +01:00
2020-06-09 21:53:20 +02:00
environment.systemPackages = with pkgs; [ syncthing radicale ];
2019-11-07 14:25:27 +01:00
2019-12-23 20:01:40 +01:00
# Enable syncthing
2019-11-07 14:25:27 +01:00
services.syncthing = {
enable = true;
openDefaultPorts = true;
guiAddress = "0.0.0.0:8384";
dataDir = "/vault/syncthing";
declarative = {
devices = {
2020-06-09 21:53:20 +02:00
roamer = {
id =
"7CDUG25-KGBOIA7-Y73TZGA-NEHYLZP-OEOEWVN-DMS5U7K-QNNMPKY-YNGEWQL";
};
panacea = {
id =
"UNZIABR-GEQ4AWT-XKFADLW-HW3SQ3Y-BEYZ56A-W530DLS-DXGQWKK-2QQ4RQ6";
};
2019-11-07 14:25:27 +01:00
};
folders = {
2020-02-25 14:03:24 +01:00
Documents = {
id = "wusdj-bfjkr";
type = "receiveonly";
path = "/vault/syncthing/Documents";
2020-06-09 21:53:20 +02:00
devices = [ "roamer" "panacea" ];
2020-02-25 14:03:24 +01:00
};
Notes = {
id = "kafhz-bfmzm";
type = "receiveonly";
path = "/vault/syncthing/Notes";
2020-06-09 21:53:20 +02:00
devices = [ "roamer" "panacea" ];
2020-02-25 14:03:24 +01:00
};
Music = {
id = "2aqt7-vpprc";
type = "receiveonly";
path = "/vault/syncthing/Music";
2020-06-09 21:53:20 +02:00
devices = [ "roamer" "panacea" ];
2020-02-25 14:03:24 +01:00
};
Photos = {
id = "mjibc-ustcg";
type = "receiveonly";
path = "/vault/syncthing/Photos";
2020-06-09 21:53:20 +02:00
devices = [ "roamer" "panacea" ];
2020-02-25 14:03:24 +01:00
};
Projects = {
id = "cjhmu-avy9v";
type = "receiveonly";
path = "/vault/syncthing/Projects";
2020-06-09 21:53:20 +02:00
devices = [ "panacea" ];
2020-02-25 14:03:24 +01:00
};
};
2019-11-07 14:25:27 +01:00
};
};
# Enable Radicale
services.radicale = {
enable = true;
config = ''
2019-11-08 14:14:32 +01:00
[server]
2019-11-11 14:30:45 +01:00
hosts = 127.0.0.1:5232
2019-11-08 14:14:32 +01:00
max_connections = 20
max_content_length = 100000000
timeout = 30
2019-11-07 14:25:27 +01:00
2019-11-08 14:14:32 +01:00
[auth]
type = htpasswd
2019-11-14 01:31:27 +01:00
htpasswd_filename = /var/lib/radicale/users
2019-11-08 14:14:32 +01:00
htpasswd_encryption = plain
delay = 1
2019-11-07 14:25:27 +01:00
'';
};
}