nix/hosts/marvin/services/syncthing.nix

9 lines
184 B
Nix
Raw Normal View History

2022-06-29 15:49:04 +00:00
{
services.syncthing = {
enable = true;
};
# Open The Ports!
networking.firewall.allowedTCPPorts = [ 8384 22000];
networking.firewall.allowedUDPPorts = [ 22000 21027];
}