From 46b109e97e629de1ac37573b98ae588b817cf111 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Fri, 16 Apr 2010 15:45:59 +0000 Subject: [PATCH] revert previous commit svn path=/nixos/trunk/; revision=21128 --- modules/virtualisation/qemu-vm.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/modules/virtualisation/qemu-vm.nix b/modules/virtualisation/qemu-vm.nix index c8b45f86b82..a17e167cb46 100644 --- a/modules/virtualisation/qemu-vm.nix +++ b/modules/virtualisation/qemu-vm.nix @@ -60,15 +60,6 @@ let ''; }; - virtualisation.readonlyHostFS = - mkOption { - default = true; - description = - '' - Whether to mount the hostfs read-only. - ''; - }; - }; cfg = config.virtualisation; @@ -172,7 +163,7 @@ in { mountPoint = "/hostfs"; device = "//10.0.2.4/qemu"; fsType = "cifs"; - options = "guest,username=nobody${if config.virtualisation.readonlyHostFS then ",noperm" else ""}"; + options = "guest,username=nobody,noperm"; neededForBoot = true; } { mountPoint = "/nix/store";