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.

18 lines
346 B
Nix
Raw Normal View History

# This module defines a small NixOS installation CD. It does not
# contain any graphical stuff.
2022-04-26 23:24:10 +02:00
{ lib, ... }:
{
2022-04-26 23:24:10 +02:00
imports = [
../../profiles/minimal.nix
./installation-cd-base.nix
];
2022-04-26 23:24:10 +02:00
documentation.man.enable = lib.mkOverride 500 true;
2022-05-05 14:37:43 +02:00
fonts.fontconfig.enable = lib.mkForce false;
2022-04-26 23:24:10 +02:00
2022-05-05 14:37:43 +02:00
isoImage.edition = lib.mkForce "minimal";
}