2015-12-30 01:45:47 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
|
|
en = { enable = true;};
|
|
|
|
in {
|
2016-02-15 15:27:11 +00:00
|
|
|
imports = [
|
2017-07-13 22:17:58 +00:00
|
|
|
<stockholm/krebs>
|
|
|
|
<stockholm/krebs/2configs>
|
2016-02-15 15:27:11 +00:00
|
|
|
];
|
2015-12-30 01:45:47 +00:00
|
|
|
krebs = {
|
|
|
|
enable = true;
|
2017-07-13 22:17:58 +00:00
|
|
|
build.user = config.krebs.users.krebs;
|
2015-12-30 01:45:47 +00:00
|
|
|
build.host = config.krebs.hosts.test-all-krebs-modules;
|
2017-01-21 21:25:47 +00:00
|
|
|
Reaktor.test = {};
|
2015-12-30 01:45:47 +00:00
|
|
|
apt-cacher-ng.enable = true;
|
|
|
|
backup.enable = true;
|
|
|
|
bepasty.enable = true;
|
2016-07-09 11:38:11 +00:00
|
|
|
# FIXME fast-tests / instantiate-test-all-modules fails at wolfbot
|
|
|
|
# http://wolf:8010/builders/fast-tests/builds/442
|
|
|
|
#buildbot.master.enable = true;
|
2017-07-23 21:01:58 +00:00
|
|
|
buildbot.slave = {
|
2015-12-30 01:45:47 +00:00
|
|
|
enable = true;
|
|
|
|
username = "lol";
|
|
|
|
password = "wut";
|
|
|
|
};
|
2016-04-27 00:24:20 +00:00
|
|
|
# XXX exim-retiolum and exim-smarthost are mutually exclusive
|
|
|
|
#exim-retiolum = {
|
|
|
|
# enable = true;
|
|
|
|
# primary_hostname = "test.r";
|
|
|
|
#};
|
2015-12-30 01:45:47 +00:00
|
|
|
exim-smarthost = {
|
|
|
|
enable = true;
|
2016-02-21 21:27:15 +00:00
|
|
|
primary_hostname = "test.r";
|
2015-12-30 01:45:47 +00:00
|
|
|
system-aliases = [ { from = "dick"; to = "butt"; } ];
|
|
|
|
};
|
|
|
|
go.enable = true;
|
|
|
|
iptables = {
|
|
|
|
enable = true;
|
|
|
|
tables = {};
|
|
|
|
};
|
|
|
|
realwallpaper.enable = true;
|
2016-07-20 16:52:40 +00:00
|
|
|
tinc.retiolum.enable = true;
|
2015-12-30 01:45:47 +00:00
|
|
|
retiolum-bootstrap.enable = true;
|
|
|
|
tinc_graphs.enable = true;
|
|
|
|
urlwatch.enable = true;
|
|
|
|
fetchWallpaper = {
|
|
|
|
enable = true;
|
|
|
|
url ="localhost";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
# just get the system running
|
|
|
|
boot.loader.grub.devices = ["/dev/sda"];
|
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/lol";
|
|
|
|
};
|
|
|
|
}
|