summaryrefslogtreecommitdiffstats
path: root/tv/1systems/cd.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-07-06 21:47:47 +0200
committertv <tv@krebsco.de>2017-07-10 11:05:48 +0200
commit112a652a9866d18263790ce5232459d4abf042b6 (patch)
treee953f148307fe2f1692c4925302a81515a2eaa39 /tv/1systems/cd.nix
parent585c3f70f1f8fe07b977524375244ab6d1953219 (diff)
move source config from module system to 1systems/*/source.nix
Diffstat (limited to 'tv/1systems/cd.nix')
-rw-r--r--tv/1systems/cd.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/tv/1systems/cd.nix b/tv/1systems/cd.nix
deleted file mode 100644
index 9f2cec5..0000000
--- a/tv/1systems/cd.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ 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 = "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
- ];
-}