1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 00:49:27 +03:00
nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
233 B
Nix
Raw Normal View History

# 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;
}