summaryrefslogtreecommitdiff
path: root/data/aliases.nix
blob: 77eb7e0f94ba640264d909fc69871f82830d8b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
rec {
  ip = {
    shape = "10.0.20.15";
  };
  services = {
    hydra = { address = ip.shape; port = 11101; };
    matrix = { address = ip.shape; port = 11102; };
    matrixFederation = { address = ip.shape; port = 8448; };
    git = { address = ip.shape; port = 11103; };
    fcgi = { address = ip.shape; port = 11104; };
  };
}