about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-12-11 08:10:48 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-12-11 08:10:48 +0100
commit544ea778b8d6776c9d1411137cf895921f547fbd (patch)
tree58618b76cad569a2b67f90f35bd33029a5d4a928 /modules
parent49c73a77f5777206e49a142a0485bc00a2d8a3e2 (diff)
profiles/tests: Fix attributes of network tests.
We should emit the actual derivations but instead just the main
attribute "nixos.networking" was added to vuizvui.requiredTests.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules')
-rw-r--r--modules/profiles/tests.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profiles/tests.nix b/modules/profiles/tests.nix
index 811d6cf8..8a8f448b 100644
--- a/modules/profiles/tests.nix
+++ b/modules/profiles/tests.nix
@@ -4,7 +4,7 @@ with lib;
 
 let
   which = if config.networking.useNetworkd then "networkd" else "scripted";
-  networkTests = map (name: ["nixos" "networking" which]) [
+  networkTests = map (name: ["nixos" "networking" which name]) [
     "static" "dhcpSimple" "dhcpOneIf" "bond" "bridge" "macvlan" "sit" "vlan"
   ];