36 lines
691 B
Nix
36 lines
691 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
|
|
{
|
|
krebs.build.host = config.krebs.hosts.cd;
|
|
|
|
imports = [
|
|
../.
|
|
../2configs/hw/CAC-Developer-2.nix
|
|
../2configs/fs/CAC-CentOS-7-64bit.nix
|
|
../2configs/exim-smarthost.nix
|
|
../2configs/retiolum.nix
|
|
];
|
|
|
|
networking = {
|
|
interfaces.enp2s1.ip4 = singleton {
|
|
address = let
|
|
addr = "64.137.177.226";
|
|
in assert config.krebs.build.host.nets.internet.ip4.addr == addr; addr;
|
|
prefixLength = 24;
|
|
};
|
|
defaultGateway = "64.137.177.1";
|
|
nameservers = ["8.8.8.8"];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
htop
|
|
iftop
|
|
iotop
|
|
iptables
|
|
nethogs
|
|
tcpdump
|
|
];
|
|
}
|