diff options
Diffstat (limited to 'tv/1systems/cd/config.nix')
| -rw-r--r-- | tv/1systems/cd/config.nix | 34 | 
1 files changed, 34 insertions, 0 deletions
diff --git a/tv/1systems/cd/config.nix b/tv/1systems/cd/config.nix new file mode 100644 index 000000000..f78bcafeb --- /dev/null +++ b/tv/1systems/cd/config.nix @@ -0,0 +1,34 @@ +{ config, lib, pkgs, ... }: + +with import <stockholm/lib>; + +{ +  krebs.build.host = config.krebs.hosts.cd; + +  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> +  ]; + +  networking = { +    interfaces.enp2s1.ip4 = singleton { +      address = let +        addr = "45.62.237.203"; +      in assert config.krebs.build.host.nets.internet.ip4.addr == addr; addr; +      prefixLength = 24; +    }; +    defaultGateway = "45.62.237.1"; +    nameservers = ["8.8.8.8"]; +  }; + +  environment.systemPackages = with pkgs; [ +    iftop +    iotop +    iptables +    nethogs +    tcpdump +  ]; +}  | 
