Home Explore Blog CI



nixpkgs

1st chunk of `nixos/doc/manual/development/testing-installer.chapter.md`
8ea16dfc504041717d1387366f9b8d8c496217ba5947a5ed00000001000001ec
# Testing the Installer {#ch-testing-installer}

Building, burning, and booting from an installation CD is rather
tedious, so here is a quick way to see if the installer works properly:

```ShellSession
# mount -t tmpfs none /mnt
# nixos-generate-config --root /mnt
$ nix-build '<nixpkgs>' -A nixos-install
# ./result/bin/nixos-install
```

To start a login shell in the new NixOS installation in `/mnt`:

```ShellSession
$ nix-build '<nixpkgs>' -A nixos-enter
# ./result/bin/nixos-enter
```

Title: Testing the NixOS Installer
Summary
This section describes a quick method to test the NixOS installer without building, burning, and booting from an installation CD. It involves mounting a tmpfs, generating a configuration, building the nixos-install program, and running it. It also provides a command to start a login shell in the new NixOS installation.