blob: b136d1ade51d59af8317ad3acabb4114fc3b1655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{ config, ... }:
with import <stockholm/lib>;
{
krebs.build.host = config.krebs.hosts.caxi;
imports = [
<stockholm/tv>
<stockholm/tv/2configs/hw/CAC-Developer-1.nix>
<stockholm/tv/2configs/fs/CAC-CentOS-7-64bit.nix>
<stockholm/tv/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"];
};
}
|