stockholm/tv/1systems/cd.nix

35 lines
680 B
Nix
Raw Normal View History

2015-07-11 16:55:22 +02:00
{ config, lib, pkgs, ... }:
2016-10-20 20:54:38 +02:00
with import <stockholm/lib>;
2015-07-11 16:55:22 +02:00
{
krebs.build.host = config.krebs.hosts.cd;
2015-07-27 04:33:37 +02:00
2015-07-11 16:55:22 +02:00
imports = [
2016-02-15 16:27:11 +01:00
../.
2015-10-29 01:09:54 +01:00
../2configs/hw/CAC-Developer-2.nix
../2configs/fs/CAC-CentOS-7-64bit.nix
2015-09-27 00:24:17 +02:00
../2configs/exim-smarthost.nix
2016-02-01 17:32:04 +01:00
../2configs/retiolum.nix
2015-07-11 16:55:22 +02:00
];
2016-04-12 17:13:29 +02:00
networking = {
interfaces.enp2s1.ip4 = singleton {
address = let
addr = "45.62.237.203";
2016-04-12 17:13:29 +02:00
in assert config.krebs.build.host.nets.internet.ip4.addr == addr; addr;
2015-07-11 16:55:22 +02:00
prefixLength = 24;
2016-04-12 17:13:29 +02:00
};
defaultGateway = "45.62.237.1";
2016-04-12 17:13:29 +02:00
nameservers = ["8.8.8.8"];
};
2015-07-11 16:55:22 +02:00
environment.systemPackages = with pkgs; [
iftop
iotop
iptables
nethogs
tcpdump
];
}