32 lines
740 B
Nix
32 lines
740 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";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|