diff options
| author | tv <tv@krebsco.de> | 2016-02-15 16:27:11 +0100 | 
|---|---|---|
| committer | tv <tv@krebsco.de> | 2016-02-15 16:34:50 +0100 | 
| commit | 8fc84193512c2f06c00f0c9b80ec5db53f6a7f3c (patch) | |
| tree | 6252e91845286d1726a2df601c5cf79d8d2035a5 /shared/1systems | |
| parent | 5f00b6b93fa081bbd76e5ba67de183e2db83cc15 (diff) | |
don't try to mimic nixpkgs
Diffstat (limited to 'shared/1systems')
| -rw-r--r-- | shared/1systems/test-all-krebs-modules.nix | 3 | ||||
| -rw-r--r-- | shared/1systems/test-arch.nix | 1 | ||||
| -rw-r--r-- | shared/1systems/test-centos6.nix | 1 | ||||
| -rw-r--r-- | shared/1systems/test-centos7.nix | 1 | ||||
| -rw-r--r-- | shared/1systems/test-failing.nix | 3 | ||||
| -rw-r--r-- | shared/1systems/test-minimal-deploy.nix | 3 | ||||
| -rw-r--r-- | shared/1systems/wolf.nix | 1 | 
7 files changed, 13 insertions, 0 deletions
| diff --git a/shared/1systems/test-all-krebs-modules.nix b/shared/1systems/test-all-krebs-modules.nix index b98004d..e1021c7 100644 --- a/shared/1systems/test-all-krebs-modules.nix +++ b/shared/1systems/test-all-krebs-modules.nix @@ -2,6 +2,9 @@  let    en = { enable = true;};  in { +  imports = [ +    ../. +  ];    krebs = {      enable = true;      build.user = config.krebs.users.shared; diff --git a/shared/1systems/test-arch.nix b/shared/1systems/test-arch.nix index ece2094..14fc038 100644 --- a/shared/1systems/test-arch.nix +++ b/shared/1systems/test-arch.nix @@ -2,6 +2,7 @@  {    imports = [ +    ../.      ../2configs/base.nix      {        boot.loader.grub = { diff --git a/shared/1systems/test-centos6.nix b/shared/1systems/test-centos6.nix index a8b5f9b..8add0b7 100644 --- a/shared/1systems/test-centos6.nix +++ b/shared/1systems/test-centos6.nix @@ -7,6 +7,7 @@ let    gw = "168.235.148.1";  in {    imports = [ +    ../.      ../2configs/base.nix      ../2configs/os-templates/CAC-CentOS-6.5-64bit.nix      { diff --git a/shared/1systems/test-centos7.nix b/shared/1systems/test-centos7.nix index 48cecc8..65daff5 100644 --- a/shared/1systems/test-centos7.nix +++ b/shared/1systems/test-centos7.nix @@ -5,6 +5,7 @@ let  in {    imports = [ +    ../.      ../2configs/base.nix      ../2configs/os-templates/CAC-CentOS-7-64bit.nix      ../2configs/temp/networking.nix diff --git a/shared/1systems/test-failing.nix b/shared/1systems/test-failing.nix index 81a9e48..fe1c2cb 100644 --- a/shared/1systems/test-failing.nix +++ b/shared/1systems/test-failing.nix @@ -1,6 +1,9 @@  { config, pkgs, ... }:  { +  imports = [ +    ../. +  ];    programs.ssh.startAgent = true;    programs.ssh.startAgent = false;  } diff --git a/shared/1systems/test-minimal-deploy.nix b/shared/1systems/test-minimal-deploy.nix index 309e289..bec2b38 100644 --- a/shared/1systems/test-minimal-deploy.nix +++ b/shared/1systems/test-minimal-deploy.nix @@ -1,5 +1,8 @@  { config, pkgs, lib, ... }:  { +  imports = [ +    ../. +  ];    krebs = {      enable = true;      build.user = config.krebs.users.shared; diff --git a/shared/1systems/wolf.nix b/shared/1systems/wolf.nix index 9a51442..3175914 100644 --- a/shared/1systems/wolf.nix +++ b/shared/1systems/wolf.nix @@ -6,6 +6,7 @@ let  in  {    imports = [ +    ../.      ../2configs/base.nix      <nixpkgs/nixos/modules/profiles/qemu-guest.nix>      ../2configs/collectd-base.nix | 
