Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
22 lines
580 B
Nix
22 lines
580 B
Nix
# This module defines a small NixOS installation CD. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../profiles/minimal.nix
|
|
./installation-cd-base.nix
|
|
];
|
|
|
|
documentation.man.enable = lib.mkOverride 500 true;
|
|
|
|
# Although we don't really need HTML documentation in the minimal installer,
|
|
# not including it may cause annoying cache misses in the case of the NixOS manual.
|
|
documentation.doc.enable = lib.mkOverride 500 true;
|
|
|
|
fonts.fontconfig.enable = lib.mkOverride 500 false;
|
|
|
|
isoImage.edition = lib.mkOverride 500 "minimal";
|
|
}
|