Home Explore Blog Models 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
41190ad5 (1st chunk of `nixos/doc/manual/development/testing-installer.chapter.md`)
Title: Testing and Entering NixOS Installations
Summary
This section provides a quick method to test the NixOS installer without the need for burning and booting from a CD. It outlines the shell commands required to mount a `tmpfs`, generate a configuration, build `nixos-install`, and execute it. Additionally, it details how to enter a login shell within a new NixOS installation by building and running `nixos-enter`.