2016-07-03 18:22:21 +00:00
|
|
|
{ config, ... }:
|
|
|
|
|
2016-10-20 18:54:38 +00:00
|
|
|
with import <stockholm/lib>;
|
2016-07-03 18:22:21 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
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"];
|
|
|
|
};
|
|
|
|
}
|