Home Explore Blog Models CI



nixpkgs

1st chunk of `nixos/doc/manual/development/testing-installer.chapter.md`
41190ad59d12efe1f730fe9a26bcb8fc524a4d2160dee25600000001000001ec
# 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 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`.