From 085a47c88a0622c6e0132a5798c118f961038bf9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 7 Jun 2010 12:16:59 +0000 Subject: [PATCH] * Bind mounts should have filesystem type "none" to prevent an invocation of "fsck.auto" at boot time. svn path=/nixos/branches/boot-order/; revision=22166 --- modules/virtualisation/qemu-vm.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/virtualisation/qemu-vm.nix b/modules/virtualisation/qemu-vm.nix index 6e4e372c1bfa..1c725d946f51 100644 --- a/modules/virtualisation/qemu-vm.nix +++ b/modules/virtualisation/qemu-vm.nix @@ -212,6 +212,7 @@ in } { mountPoint = "/nix/store"; device = "/hostfs/nix/store"; + fsType = "none"; options = "bind"; neededForBoot = true; }