diff --git a/tests/trac.nix b/tests/trac.nix index daf59a6f29d..9f3ea90261f 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;