Home Explore Blog Models CI



nixpkgs

nixos/doc/manual/installation/installing-virtualbox-guest.section.md
9b7b675f1cc832dcc401df02164c1a8b15c3c0647620479e0000000300000690
# Installing in a VirtualBox guest {#sec-installing-virtualbox-guest}

Installing NixOS into a VirtualBox guest is convenient for users who
want to try NixOS without installing it on bare metal. If you want to set
up a VirtualBox guest, follow these instructions:

1.  Add a New Machine in VirtualBox with OS Type "Linux / Other Linux"

1.  Base Memory Size: 768 MB or higher.

1.  New Hard Disk of 10 GB or higher.

1.  Mount the CD-ROM with the NixOS ISO (by clicking on CD/DVD-ROM)

1.  Click on Settings / System / Processor and enable PAE/NX

1.  Click on Settings / System / Acceleration and enable "VT-x/AMD-V"
    acceleration

1.  Click on Settings / Display / Screen and select VMSVGA as Graphics
    Controller

1.  Save the settings, start the virtual machine, and continue
    installation like normal

There are a few modifications you should make in configuration.nix.
Enable booting:

```nix
{ boot.loader.grub.device = "/dev/sda"; }
```

Also remove the fsck that runs at startup. It will always fail to run,
stopping your boot until you press `*`.

```nix
{ boot.initrd.checkJournalingFS = false; }
```

Shared folders can be given a name and a path in the host system in the
VirtualBox settings (Machine / Settings / Shared Folders, then click on
the "Add" icon). Add the following to the
`/etc/nixos/configuration.nix` to auto-mount them. If you do not add
`"nofail"`, the system will not boot properly.

```nix
{ config, pkgs, ... }:
{
  fileSystems."/virtualboxshare" = {
    fsType = "vboxsf";
    device = "nameofthesharedfolder";
    options = [
      "rw"
      "nofail"
    ];
  };
}
```

The folder will be available directly under the root directory.

Chunks
7ba8a7e7 (1st chunk of `nixos/doc/manual/installation/installing-virtualbox-guest.section.md`)
Title: Installing NixOS in a VirtualBox Guest
Summary
This guide provides instructions for installing NixOS in a VirtualBox guest, ideal for users wanting to try it without a bare-metal installation. It details the steps for setting up a new VirtualBox machine, including OS type, memory, disk size, ISO mounting, and enabling specific system and display settings (PAE/NX, VT-x/AMD-V, VMSVGA). The guide also covers essential modifications to `configuration.nix` for enabling GRUB bootloader on `/dev/sda` and disabling `checkJournalingFS` to prevent boot failures. Finally, it explains how to configure and auto-mount VirtualBox shared folders using `vboxsf` with the `nofail` option, making them available under `/virtualboxshare`.