stockholm/tv/1systems/cd.nix

91 lines
2.2 KiB
Nix
Raw Normal View History

2015-07-11 16:55:22 +02:00
{ config, lib, pkgs, ... }:
2016-02-14 16:43:44 +01:00
with config.krebs.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
2015-07-28 20:40:25 +02:00
../2configs/git.nix
2016-02-01 17:32:04 +01:00
../2configs/retiolum.nix
2015-10-09 13:31:21 +02:00
../2configs/urlwatch.nix
2015-07-19 23:23:57 +02:00
{
tv.charybdis = {
enable = true;
2016-02-21 06:23:06 +01:00
ssl_cert = ../Zcerts/charybdis_cd.crt.pem;
2015-07-19 23:23:57 +02:00
};
2016-02-21 06:23:06 +01:00
tv.iptables.input-retiolum-accept-new-tcp = [
config.tv.charybdis.port
config.tv.charybdis.sslport
];
2015-07-19 23:23:57 +02:00
}
2015-07-11 16:55:22 +02:00
{
tv.ejabberd = {
enable = true;
hosts = [ "jabber.viljetic.de" ];
};
2016-02-01 17:56:10 +01:00
tv.iptables.input-internet-accept-new-tcp = [
"xmpp-client"
"xmpp-server"
];
2015-07-11 16:55:22 +02:00
}
2015-07-19 16:13:27 +02:00
{
2015-07-24 12:03:51 +02:00
krebs.github-hosts-sync.enable = true;
2015-07-19 16:13:27 +02:00
tv.iptables.input-internet-accept-new-tcp =
2015-07-24 12:03:51 +02:00
singleton config.krebs.github-hosts-sync.port;
2015-07-19 16:13:27 +02:00
}
2015-07-11 16:55:22 +02:00
{
krebs.nginx.servers.cgit.server-names = [
"cgit.cd.krebsco.de"
"cgit.cd.viljetic.de"
];
# TODO make public_html also available to cd, cd.retiolum (AKA default)
2015-07-24 11:50:23 +02:00
krebs.nginx.servers.public_html = {
server-names = singleton "cd.viljetic.de";
locations = singleton (nameValuePair "~ ^/~(.+?)(/.*)?\$" ''
alias /home/$1/public_html$2;
'');
};
2015-07-24 11:50:23 +02:00
krebs.nginx.servers.viljetic = {
2015-07-19 17:15:50 +02:00
server-names = singleton "viljetic.de";
# TODO directly set root (instead via location)
locations = singleton (nameValuePair "/" ''
2015-08-29 00:19:52 +02:00
root ${pkgs.viljetic-pages};
2015-07-19 17:15:50 +02:00
'');
};
2016-02-01 17:56:10 +01:00
tv.iptables.input-internet-accept-new-tcp = singleton "http";
2015-07-19 17:15:50 +02:00
}
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";
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";
nameservers = ["8.8.8.8"];
};
2015-07-11 16:55:22 +02:00
environment.systemPackages = with pkgs; [
htop
iftop
iotop
iptables
nethogs
2015-08-29 08:57:53 +02:00
ntp # ntpate
2015-07-11 16:55:22 +02:00
rxvt_unicode.terminfo
tcpdump
];
services.journald.extraConfig = ''
SystemMaxUse=1G
RuntimeMaxUse=128M
'';
}