1 # Building a NixOS (Live) ISO {#sec-building-image}
3 Default live installer configurations are available inside `nixos/modules/installer/cd-dvd`.
4 For building other system images, [nixos-generators] is a good place to start looking at.
8 - Use any of those default configurations as is
9 - Combine them with (any of) your host config(s)
11 System images, such as the live installer ones, know how to enforce configuration settings
12 on which they immediately depend in order to work correctly.
14 However, if you are confident, you can opt to override those
15 enforced values with `mkForce`.
17 [nixos-generators]: https://github.com/nix-community/nixos-generators
19 ## Practical Instructions {#sec-building-image-instructions}
21 To build an ISO image for the channel `nixos-unstable`:
24 $ git clone https://github.com/NixOS/nixpkgs.git
26 $ git switch nixos-unstable
27 $ nix-build -A config.system.build.isoImage -I nixos-config=modules/installer/cd-dvd/installation-cd-minimal.nix default.nix
30 To check the content of an ISO image, mount it like so:
33 # mount -o loop -t iso9660 ./result/iso/cd.iso /mnt/iso
36 ## Additional drivers or firmware {#sec-building-image-drivers}
38 If you need additional (non-distributable) drivers or firmware in the
39 installer, you might want to extend these configurations.
41 For example, to build the GNOME graphical installer ISO, but with support for
42 certain WiFi adapters present in some MacBooks, you can create the following
43 file at `modules/installer/cd-dvd/installation-cd-graphical-gnome-macbook.nix`:
49 imports = [ ./installation-cd-graphical-gnome.nix ];
51 boot.initrd.kernelModules = [ "wl" ];
53 boot.kernelModules = [ "kvm-intel" "wl" ];
54 boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
58 Then build it like in the example above:
61 $ git clone https://github.com/NixOS/nixpkgs.git
63 $ export NIXPKGS_ALLOW_UNFREE=1
64 $ nix-build -A config.system.build.isoImage -I nixos-config=modules/installer/cd-dvd/installation-cd-graphical-gnome-macbook.nix default.nix
67 ## Technical Notes {#sec-building-image-tech-notes}
69 The config value enforcement is implemented via `mkImageMediaOverride = mkOverride 60;`
70 and therefore primes over simple value assignments, but also yields to `mkForce`.
72 This property allows image designers to implement in semantically correct ways those
73 configuration values upon which the correct functioning of the image depends.
75 For example, the iso base image overrides those file systems which it needs at a minimum
76 for correct functioning, while the installer base image overrides the entire file system
77 layout because there can't be any other guarantees on a live medium than those given
78 by the live medium itself. The latter is especially true before formatting the target
79 block device(s). On the other hand, the netboot iso only overrides its minimum dependencies
80 since netboot images are always made-to-target.