Home Explore Blog CI



nixpkgs

nixos/doc/manual/development/testing-installer.chapter.md
268052b489b42de32260fc28707c3f00cee766f2cc9d071200000003000001ec
# 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
```

Chunks
8ea16dfc (1st chunk of `nixos/doc/manual/development/testing-installer.chapter.md`)
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.