summaryrefslogtreecommitdiff
path: root/data/aliases.nix
blob: 842754734720d3a8dd9349c9ff5fc11d3f3cbcc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; };
    systemhttpd = { address = ip.shape; port = 11105; };
  };
}