stockholm/tv/1systems/cd.nix

36 lines
689 B
Nix
Raw Normal View History

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