about summary refs log tree commit diff
path: root/nixos/tests/trac.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-29 13:04:52 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-29 13:14:30 +0100
commitadc1b38b85857630be32452a2cfd26f39946d497 (patch)
tree121f78854e3f9a8e2bc85065867c8b04e511ea03 /nixos/tests/trac.nix
parentf0b7b0af12be7b36add358cd1e24bbca02e57c64 (diff)
Add a priority level for overrides in VM tests
Now that overriding fileSystems in qemu-vm.nix works again, it's
important that the VM tests that add additional file systems use the
same override priority.  Instead of using the same magic constant
everywhere, they can now use mkVMOverride.

http://hydra.nixos.org/build/6695561
Diffstat (limited to 'nixos/tests/trac.nix')
-rw-r--r--nixos/tests/trac.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/trac.nix b/nixos/tests/trac.nix
index 72442c885acec..e0d256f57019a 100644
--- a/nixos/tests/trac.nix
+++ b/nixos/tests/trac.nix
@@ -27,7 +27,7 @@
 
     webserver =
       { config, pkgs, ... }:
-      { fileSystems = pkgs.lib.mkOverride 50
+      { fileSystems = pkgs.lib.mkVMOverride
           [ { mountPoint = "/repos";
               device = "storage:/repos";
               fsType = "nfs";