2022-12-18 00:31:14 +00:00
|
|
|
# Installing in a VirtualBox guest {#sec-installing-virtualbox-guest}
|
2021-07-02 14:51:29 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
use a pre-made VirtualBox appliance, it is available at [the downloads
|
2024-05-13 10:54:22 +00:00
|
|
|
page](https://nixos.org/download/#nixos-virtualbox). If you want to set
|
|
|
|
up a VirtualBox guest manually, follow these instructions:
|
2021-07-02 14:51:29 +00:00
|
|
|
|
2022-12-21 20:45:00 +00:00
|
|
|
1. Add a New Machine in VirtualBox with OS Type "Linux / Other Linux"
|
2021-07-02 14:51:29 +00:00
|
|
|
|
|
|
|
1. Base Memory Size: 768 MB or higher.
|
|
|
|
|
|
|
|
1. New Hard Disk of 8 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
|
|
|
|
|
2022-12-21 20:45:00 +00:00
|
|
|
1. Click on Settings / System / Acceleration and enable "VT-x/AMD-V"
|
2021-07-02 14:51:29 +00:00
|
|
|
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
|
2024-03-27 18:10:27 +00:00
|
|
|
{
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
}
|
2021-07-02 14:51:29 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Also remove the fsck that runs at startup. It will always fail to run,
|
|
|
|
stopping your boot until you press `*`.
|
|
|
|
|
|
|
|
```nix
|
2024-03-27 18:10:27 +00:00
|
|
|
{
|
|
|
|
boot.initrd.checkJournalingFS = false;
|
|
|
|
}
|
2021-07-02 14:51:29 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
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
|
2022-12-21 20:45:00 +00:00
|
|
|
the "Add" icon). Add the following to the
|
2021-07-02 14:51:29 +00:00
|
|
|
`/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.
|