DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 9b348150e31e5e9b248705c3b46783c95c8f1979 nix-arta/lib/util.nix -rw-r--r-- 335 bytes
9b348150Jonni Liljamo wip(systems/hosts/sqbuilds): initial sqbuilds config 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{...}: let
  hostNameToIPv4 = {
    "sqbuilds" = "10.1.1.50";
    "dns" = "10.1.2.3";
    "metrics" = "10.1.2.5";
    "proxy" = "10.1.2.10";
    "auth" = "10.1.2.12";
    "cloud" = "10.1.2.15";
    "alderaan" = "10.1.2.16";
    "social" = "10.1.2.17";
  };
  getIPv4 = hostName: hostNameToIPv4.${hostName};
in {
  getIPv4 = getIPv4;
}