From e87a298c33dbd232073d8cb8b8f10d7015335d5d Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Thu, 19 Aug 2010 08:32:31 +0000 Subject: [PATCH] qemu virtualiztion: do not pass username on guest cifs mount, use sec=none in stead svn path=/nixos/trunk/; revision=23243 --- modules/virtualisation/qemu-vm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/virtualisation/qemu-vm.nix b/modules/virtualisation/qemu-vm.nix index 73d527a91ca..3d3b241ed73 100644 --- a/modules/virtualisation/qemu-vm.nix +++ b/modules/virtualisation/qemu-vm.nix @@ -219,7 +219,7 @@ in { mountPoint = "/hostfs"; device = "//10.0.2.4/qemu"; fsType = "cifs"; - options = "guest,username=nobody,noperm,noacl"; + options = "guest,sec=none,noperm,noacl"; neededForBoot = true; } { mountPoint = "/nix/store";