From e995f317ae2864652da71ab827bcaca1a7e19db5 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Fri, 4 Feb 2011 13:33:52 +0000 Subject: [PATCH] Fixed NFS mount to storage machine svn path=/nixos/trunk/; revision=25773 --- tests/trac.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/trac.nix b/tests/trac.nix index daf59a6f29da..9f3ea90261f8 100644 --- a/tests/trac.nix +++ b/tests/trac.nix @@ -31,9 +31,11 @@ webserver = {config, pkgs, ...}: { - fileSystems = pkgs.lib.mkOverrideTemplate 50 {} + fileSystems = pkgs.lib.mkOverride 50 [ { mountPoint = "/repos"; - device = "storage:/repos"; } + device = "storage:/repos"; + fsType = "nfs"; + options = "bootwait"; } ]; services.portmap.enable = true;