https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
14 lines
233 B
Nix
14 lines
233 B
Nix
# This module defines a small NixOS installation CD. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
imports =
|
|
[ ./installation-cd-base.nix
|
|
];
|
|
|
|
isoImage.edition = "minimal";
|
|
|
|
fonts.fontconfig.enable = false;
|
|
}
|