From cc6b1f6ad14914351e2885a6c7c283e451b61212 Mon Sep 17 00:00:00 2001 From: tv Date: Sun, 3 Jul 2016 20:22:21 +0200 Subject: caxi: init --- tv/1systems/caxi.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tv/1systems/caxi.nix (limited to 'tv/1systems/caxi.nix') diff --git a/tv/1systems/caxi.nix b/tv/1systems/caxi.nix new file mode 100644 index 00000000..5bfacd99 --- /dev/null +++ b/tv/1systems/caxi.nix @@ -0,0 +1,25 @@ +{ config, ... }: + +with config.krebs.lib; + +{ + krebs.build.host = config.krebs.hosts.caxi; + + imports = [ + ../. + ../2configs/hw/CAC-Developer-1.nix + ../2configs/fs/CAC-CentOS-7-64bit.nix + ../2configs/retiolum.nix + ]; + + networking = let + inherit (config.krebs.build.host.nets.internet) ip4; + in { + interfaces.enp2s1.ip4 = singleton { + address = ip4.addr; + prefixLength = fromJSON (head (match ".*/([0-9]+)" ip4.prefix)); + }; + defaultGateway = head (match "([^/]*)\.0/[0-9]+" ip4.prefix) + ".1"; + nameservers = ["8.8.8.8"]; + }; +} -- cgit v1.2.3