diff options
Diffstat (limited to 'shared/1systems')
| -rw-r--r-- | shared/1systems/test-all-krebs-modules.nix | 45 | ||||
| -rw-r--r-- | shared/1systems/test-centos7.nix | 3 | ||||
| -rw-r--r-- | shared/1systems/test-failing.nix | 6 | ||||
| -rw-r--r-- | shared/1systems/test-minimal-deploy.nix | 13 | ||||
| -rw-r--r-- | shared/1systems/wolf.nix | 4 | 
5 files changed, 67 insertions, 4 deletions
diff --git a/shared/1systems/test-all-krebs-modules.nix b/shared/1systems/test-all-krebs-modules.nix new file mode 100644 index 000000000..b98004dfe --- /dev/null +++ b/shared/1systems/test-all-krebs-modules.nix @@ -0,0 +1,45 @@ +{ config, pkgs, lib, ... }: +let +  en = { enable = true;}; +in { +  krebs = { +    enable = true; +    build.user = config.krebs.users.shared; +    build.host = config.krebs.hosts.test-all-krebs-modules; +    Reaktor.enable = true; +    apt-cacher-ng.enable = true; +    backup.enable = true; +    bepasty.enable = true; +    buildbot.master.enable = true; +    buildbot.slave = { +      enable = true; +      username = "lol"; +      password = "wut"; +    }; +    exim-retiolum.enable = true; +    exim-smarthost = { +      enable = true; +      system-aliases = [ { from = "dick"; to = "butt"; } ]; +    }; +    go.enable = true; +    iptables = { +      enable = true; +      tables = {}; +    }; +    nginx.enable = true; +    realwallpaper.enable = true; +    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"; +  }; +} diff --git a/shared/1systems/test-centos7.nix b/shared/1systems/test-centos7.nix index 077a5d61b..48cecc877 100644 --- a/shared/1systems/test-centos7.nix +++ b/shared/1systems/test-centos7.nix @@ -7,7 +7,8 @@ in {    imports = [      ../2configs/base.nix      ../2configs/os-templates/CAC-CentOS-7-64bit.nix -    ../2configs/os-templates/temp-networking.nix +    ../2configs/temp/networking.nix +    ../2configs/temp/dirs.nix    ];    sound.enable = false; diff --git a/shared/1systems/test-failing.nix b/shared/1systems/test-failing.nix new file mode 100644 index 000000000..81a9e48d6 --- /dev/null +++ b/shared/1systems/test-failing.nix @@ -0,0 +1,6 @@ +{ config, pkgs, ... }: + +{ +  programs.ssh.startAgent = true; +  programs.ssh.startAgent = false; +} diff --git a/shared/1systems/test-minimal-deploy.nix b/shared/1systems/test-minimal-deploy.nix new file mode 100644 index 000000000..ddd96f6b5 --- /dev/null +++ b/shared/1systems/test-minimal-deploy.nix @@ -0,0 +1,13 @@ +{ config, pkgs, lib, ... }: +{ +  krebs = { +    enable = true; +    build.user = config.krebs.users.shared; +    build.host = config.krebs.hosts.test-all-krebs-modules; +  }; +  # just get the system running +  boot.loader.grub.devices = ["/dev/sda"]; +  fileSystems."/" = { +    device = "/dev/lol"; +  }; +} diff --git a/shared/1systems/wolf.nix b/shared/1systems/wolf.nix index 2c51ac8fe..f05356f0f 100644 --- a/shared/1systems/wolf.nix +++ b/shared/1systems/wolf.nix @@ -11,7 +11,7 @@ in      ../2configs/collectd-base.nix      ../2configs/shack-nix-cacher.nix      ../2configs/shack-drivedroid.nix -    ../2configs/cac-ci.nix +    ../2configs/buildbot-standalone.nix      ../2configs/graphite.nix    ];    # use your own binary cache, fallback use cache.nixos.org (which is used by @@ -33,8 +33,6 @@ in    # uninteresting stuff    #####################    krebs.build.host = config.krebs.hosts.wolf; -  # TODO rename shared user to "krebs" -  krebs.build.user = config.krebs.users.shared;    krebs.build.target = "wolf";    boot.kernel.sysctl = {  | 
