{ config, lib, pkgs, ... }:

with lib;

{
  module.cluster.services.tinc = {
    "private" = {
      enable = true;
      openPort = true;
      connectTo = [ "sputnik" ];
    };
    "retiolum" = {
      enable = true;
      openPort = true;
    };
  };

}