summaryrefslogtreecommitdiffstats
path: root/shared/1systems/test-all-krebs-modules.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2017-07-11 11:26:24 +0200
committerlassulus <lassulus@lassul.us>2017-07-12 19:09:36 +0200
commit41d65979c5fa248ba787bc0702cd58e2296088d2 (patch)
tree69b03b41707bc10d89cf1a367f8060d3d700b697 /shared/1systems/test-all-krebs-modules.nix
parente5ab52e4280242507c7919dcd934dd3ba1993e5e (diff)
move source config from module system to 1systems/*/source.nix
Diffstat (limited to 'shared/1systems/test-all-krebs-modules.nix')
-rw-r--r--shared/1systems/test-all-krebs-modules.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/shared/1systems/test-all-krebs-modules.nix b/shared/1systems/test-all-krebs-modules.nix
deleted file mode 100644
index 39d7c49..0000000
--- a/shared/1systems/test-all-krebs-modules.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{ config, pkgs, lib, ... }:
-let
- en = { enable = true;};
-in {
- imports = [
- ../.
- ];
- krebs = {
- enable = true;
- build.user = config.krebs.users.shared;
- build.host = config.krebs.hosts.test-all-krebs-modules;
- Reaktor.test = {};
- apt-cacher-ng.enable = true;
- backup.enable = true;
- bepasty.enable = true;
- # FIXME fast-tests / instantiate-test-all-modules fails at wolfbot
- # http://wolf:8010/builders/fast-tests/builds/442
- #buildbot.master.enable = true;
- buildbot.worker = {
- enable = true;
- username = "lol";
- password = "wut";
- };
- # XXX exim-retiolum and exim-smarthost are mutually exclusive
- #exim-retiolum = {
- # enable = true;
- # primary_hostname = "test.r";
- #};
- exim-smarthost = {
- enable = true;
- primary_hostname = "test.r";
- system-aliases = [ { from = "dick"; to = "butt"; } ];
- };
- go.enable = true;
- iptables = {
- enable = true;
- tables = {};
- };
- realwallpaper.enable = true;
- tinc.retiolum.enable = true;
- 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";
- };
-}