stockholm/tv/1systems/cd/config.nix

36 lines
787 B
Nix
Raw Normal View History

2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2017-07-28 19:26:31 +00:00
{ config, pkgs, ... }: let
bestGuessGateway = addr: elemAt (match "(.*)(\.[^.])" addr) 0 + ".1";
2015-07-11 14:55:22 +00:00
2017-07-28 19:26:31 +00:00
in {
krebs.build.host = config.krebs.hosts.cd;
2015-07-27 02:33:37 +00:00
2015-07-11 14:55:22 +00:00
imports = [
<stockholm/tv>
<stockholm/tv/2configs/hw/CAC-Developer-2.nix>
<stockholm/tv/2configs/fs/CAC-CentOS-7-64bit.nix>
<stockholm/tv/2configs/exim-smarthost.nix>
<stockholm/tv/2configs/retiolum.nix>
2015-07-11 14:55:22 +00:00
];
2017-07-28 19:26:31 +00:00
networking = let
address = config.krebs.build.host.nets.internet.ip4.addr;
in {
defaultGateway = bestGuessGateway address;
2016-04-12 15:13:29 +00:00
interfaces.enp2s1.ip4 = singleton {
2017-07-28 19:26:31 +00:00
inherit address;
2015-07-11 14:55:22 +00:00
prefixLength = 24;
2016-04-12 15:13:29 +00:00
};
nameservers = ["8.8.8.8"];
};
2015-07-11 14:55:22 +00:00
environment.systemPackages = with pkgs; [
iftop
iotop
iptables
nethogs
tcpdump
];
}