@cryptotaxi247 / infra / commits / f53e56af

Add Eris to the Delft network

Eelco Dolstra committed Oct 29, 2018 at 15:13 UTC f53e56afba86a1708ae2376beee08fa995228a93
2 files changed +5
delft/eris.nix new
+4
@@ -0,0 +1,4 @@
1 +{ config, lib, pkgs, ... }:
2 +{ deployment.targetEnv = "hetzner";
3 + deployment.hetzner.mainIPv4 = "138.201.32.77";
4 +}
delft/network.nix
+1
@@ -4,4 +4,5 @@
4 wendy = { deployment.targetHost = "wendy.ewi.tudelft.nl"; imports = [ ./wendy.nix ]; };
5 ike = { deployment.targetHost = "ike.ewi.tudelft.nl"; imports = [ ./build-machines-dell-r815.nix ]; };
6 chef = import ./chef.nix;
7 + eris = import ./eris.nix;
8 }