43 lines
869 B
Nix
43 lines
869 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
#networking.firewall.allowedTCPPorts = [ 22000 ];
|
|
#networking.firewall.allowedUDPPorts = [ 22000 ];
|
|
|
|
services.syncthing = {
|
|
enable = true;
|
|
openDefaultPorts = false;
|
|
user = "media";
|
|
group = "media";
|
|
dataDir = "/media/syncthing/config";
|
|
configDir = "/media/syncthing/config";
|
|
overrideDevices = true;
|
|
overrideFolders = true;
|
|
settings.folders = {
|
|
audiobooks = {
|
|
enable = true;
|
|
path = "/media/syncthing/audiobooks";
|
|
};
|
|
lectures = {
|
|
enable = true;
|
|
path = "/media/syncthing/lectures";
|
|
};
|
|
flix = {
|
|
enable = true;
|
|
type = "receiveonly";
|
|
path = "/media/syncthing/flix";
|
|
};
|
|
share = {
|
|
enable = true;
|
|
type = "receiveonly";
|
|
path = "/media/syncthing/share";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|