nix/hosts/marvin/services/syncthing.nix

10 lines
215 B
Nix
Raw Normal View History

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