about summary refs log tree commit diff
path: root/modules/profiles
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-12-11 13:18:57 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-12-11 13:18:57 +0100
commita3abdeb4e1b442345da8b1d0c28e2b4921ab7433 (patch)
tree5ec982ab54333c322c9f8c1c13d070e4b91f6c79 /modules/profiles
parent42fdbfd5144e38118732aee43be4b8102114bb92 (diff)
profiles/tests: Add a check for allProxy.
This was just pushed a few minutes ago as commit
NixOS/nixpkgs@565707c57abc6ee9e81d4f6c9bd5fed5bbac2d40.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/profiles')
-rw-r--r--modules/profiles/tests.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/profiles/tests.nix b/modules/profiles/tests.nix
index f2660663..12024a5a 100644
--- a/modules/profiles/tests.nix
+++ b/modules/profiles/tests.nix
@@ -163,7 +163,9 @@ let
       path  = ["nixos" "networking" whichNet "vlan"];
     }
     { check = with config.networking.proxy; any (val: val != null)
-            [ default ftpProxy httpProxy httpsProxy noProxy rsyncProxy ];
+            [ default allProxy ftpProxy httpProxy httpsProxy noProxy
+              rsyncProxy
+            ];
       path  = ["nixos" "networkingProxy"];
     }
     { check = elem "nfs" config.boot.supportedFilesystems;