stockholm/makefu/1systems/wry.nix

94 lines
2.3 KiB
Nix
Raw Normal View History

2015-09-27 13:23:54 +00:00
{ config, lib, pkgs, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2015-09-27 13:23:54 +00:00
let
external-ip = config.krebs.build.host.nets.internet.ip4.addr;
internal-ip = config.krebs.build.host.nets.retiolum.ip4.addr;
2015-09-27 13:23:54 +00:00
in {
imports = [
2016-02-15 15:27:11 +00:00
../.
2015-10-19 17:48:56 +00:00
# TODO: copy this config or move to krebs
2016-06-13 14:22:51 +00:00
../2configs/hw/CAC.nix
../2configs/fs/CAC-CentOS-7-64bit.nix
2016-06-23 14:57:36 +00:00
../2configs/save-diskspace.nix
2015-10-19 17:48:56 +00:00
2016-12-25 00:08:49 +00:00
../2configs/bepasty-dual.nix
../2configs/iodined.nix
2016-10-19 10:31:13 +00:00
../2configs/backup.nix
2015-10-28 20:31:07 +00:00
# other nginx
../2configs/nginx/euer.wiki.nix
../2configs/nginx/euer.blog.nix
2016-12-24 22:41:33 +00:00
# ../2configs/nginx/euer.test.nix
2016-10-19 10:31:13 +00:00
# collectd
2017-01-10 10:34:44 +00:00
../2configs/logging/central-stats-client.nix
../2configs/logging/central-logging-client.nix
../2configs/tinc/retiolum.nix
2017-01-10 10:34:44 +00:00
# ../2configs/torrent.nix
2015-09-27 13:23:54 +00:00
];
2016-06-23 14:57:36 +00:00
2015-11-06 22:54:27 +00:00
krebs.build.host = config.krebs.hosts.wry;
2015-10-19 17:48:56 +00:00
2017-01-21 20:57:59 +00:00
krebs.Reaktor.reaktor = {
2015-12-30 10:29:28 +00:00
nickname = "Reaktor|bot";
2015-12-30 10:53:48 +00:00
channels = [ "#krebs" "#shackspace" "#binaergewitter" ];
2015-12-30 10:29:28 +00:00
plugins = with pkgs.ReaktorPlugins;[
titlebot
# stockholm-issue
nixos-version
shack-correct
sed-plugin
random-emoji ];
};
# prepare graphs
2016-12-24 22:41:33 +00:00
services.nginx.enable = true;
krebs.retiolum-bootstrap.enable = true;
2016-12-25 00:08:49 +00:00
krebs.bepasty.servers."paste.r".nginx.extraConfig = ''
if ( $server_addr = "${external-ip}" ) {
return 403;
}
'';
krebs.tinc_graphs = {
2015-10-04 16:55:53 +00:00
enable = true;
nginx = {
enable = true;
# TODO: remove hard-coded hostname
complete = {
2016-12-24 22:41:33 +00:00
extraConfig = ''
if ( $server_addr = "${external-ip}" ) {
return 403;
}
'';
serverAliases = [ "graphs.retiolum" "graphs.wry" "graphs.retiolum" "graphs.wry.retiolum" ];
};
anonymous = {
2016-12-24 22:41:33 +00:00
enableSSL = true;
forceSSL = true;
enableACME = true;
};
};
2015-10-04 16:55:53 +00:00
};
2015-11-06 22:54:27 +00:00
networking = {
2015-12-30 10:29:28 +00:00
firewall = {
allowPing = true;
logRefusedConnections = false;
allowedTCPPorts = [ 53 80 443 ];
2015-12-30 10:29:28 +00:00
allowedUDPPorts = [ 655 53 ];
};
interfaces.enp2s1.ip4 = [{
address = external-ip;
prefixLength = 24;
}];
defaultGateway = "104.233.87.1";
nameservers = [ "8.8.8.8" ];
2015-09-27 13:23:54 +00:00
};
2016-08-21 10:06:31 +00:00
environment.systemPackages = [ pkgs.screen ];
2015-09-27 13:23:54 +00:00
}