mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-20 16:39:31 +03:00
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;
|
|
}
|