nixos-config/configs/workhorse/syncthing.nix

123 lines
3.2 KiB
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ config, pkgs, lib, ... }: {
2019-10-24 02:20:38 +02:00
custom.samba-share = {
enable = true;
folders = {
2020-11-21 18:56:11 +01:00
movies = config.services.syncthing.declarative.folders.movies.path;
series = config.services.syncthing.declarative.folders.series.path;
samples = config.services.syncthing.declarative.folders.samples.path;
music = config.services.syncthing.declarative.folders.music-library.path;
};
};
2020-11-21 18:56:11 +01:00
services.syncthing = {
2019-12-20 05:54:26 +01:00
enable = true;
openDefaultPorts = false;
dataDir = "/home/syncthing";
configDir = "/home/syncthing";
declarative = {
cert = toString <secrets/syncthing/cert.pem>;
key = toString <secrets/syncthing/key.pem>;
overrideFolders = true;
2019-10-24 02:20:38 +02:00
2019-12-20 05:54:26 +01:00
folders = {
2019-10-24 02:20:38 +02:00
2019-12-20 05:54:26 +01:00
# on encrypted hard drive
# -----------------------
private = {
2019-11-22 11:46:39 +01:00
enable = true;
path = "/home/syncthing/private";
2019-12-20 05:54:26 +01:00
};
desktop = {
enable = true;
path = "/home/syncthing/desktop";
};
finance = {
enable = true;
path = "/home/syncthing/finance";
};
fotos = {
enable = true;
path = "/home/syncthing/fotos";
};
lost-fotos = {
enable = true;
path = "/home/syncthing/lost-fotos.ct";
};
music-projects = {
enable = true;
path = "/home/syncthing/music-projects";
};
2020-03-31 11:33:31 +02:00
zettlr = {
2019-12-20 05:54:26 +01:00
enable = true;
2020-03-31 11:33:31 +02:00
path = "/home/syncthing/zettlr";
2019-12-20 05:54:26 +01:00
};
2019-10-24 02:20:38 +02:00
2019-12-20 05:54:26 +01:00
# on media hard drive (not encrypted)
# -----------------------------------
2020-03-31 11:33:31 +02:00
video-material = {
enable = true;
path = "/home/syncthing/video-material";
};
2019-12-20 05:54:26 +01:00
music-library-free = {
enable = true;
path = "/media/syncthing/music-library-free";
rescanInterval = 8 * 3600;
2019-12-20 05:54:26 +01:00
};
2020-01-31 10:40:14 +01:00
porn = {
enable = true;
path = "/media/syncthing/porn";
rescanInterval = 8 * 3600;
};
2019-12-20 05:54:26 +01:00
samples = {
enable = true;
path = "/media/syncthing/samples";
rescanInterval = 8 * 3600;
2019-12-20 05:54:26 +01:00
};
movies = {
enable = true;
path = "/media/syncthing/movies";
rescanInterval = 8 * 3600;
2019-12-20 05:54:26 +01:00
};
music-library = {
enable = true;
path = "/media/syncthing/music-library";
rescanInterval = 8 * 3600;
2019-12-20 05:54:26 +01:00
};
series = {
enable = true;
path = "/media/syncthing/series";
rescanInterval = 8 * 3600;
2019-12-20 05:54:26 +01:00
};
2020-03-14 19:29:50 +01:00
smartphone-folder = {
enable = true;
path = "/media/syncthing/smartphone-folder";
rescanInterval = 8 * 3600;
};
2020-09-27 23:18:06 +02:00
processing = {
enable = true;
path = "/media/syncthing/sketchbook";
rescanInterval = 8 * 3600;
};
2019-10-24 02:20:38 +02:00
2019-12-20 05:54:26 +01:00
};
};
};
2019-10-24 02:20:38 +02:00
2020-09-08 21:45:42 +02:00
system.permown."/media/syncthing" = {
owner = "syncthing";
group = "syncthing";
};
systemd.services."permown._media_syncthing" = {
bindsTo = [ "media.mount" ];
after = [ "media.mount" ];
};
2019-10-24 02:20:38 +02:00
systemd.services."syncthing" = {
bindsTo = [ "media.mount" ];
after = [ "media.mount" ];
};
2020-09-04 00:49:35 +02:00
backup.dirs = [ "/home/syncthing/finance" ];
2019-10-25 09:54:38 +02:00
2019-10-24 02:20:38 +02:00
}