qemu-vm.nix: Do not mount /boot read-only.

There does not seem to be a good reason to do this, and it breaks running
`nixos-rebuild boot --install-bootloader` inside the VM.
This commit is contained in:
Niklas Hambüchen
2020-07-04 14:44:33 +02:00
parent e74755c422
commit 2fa351b6a5
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -630,7 +630,6 @@ in
{ "/boot" =
{ device = "${lookupDriveDeviceName "boot" cfg.qemu.drives}2";
fsType = "vfat";
options = [ "ro" ];
noCheck = true; # fsck fails on a r/o filesystem
};
});