nixos/installation-cd-minimal: allow overwriting isoImage.edition with mkForce like other options

For good measure also changed fontconfig
This commit is contained in:
Sandro Jäckel 2024-01-06 15:50:46 +01:00
parent 71328eb7f0
commit eceb5b2f8c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -18,7 +18,7 @@
# 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.mkForce false;
fonts.fontconfig.enable = lib.mkOverride 500 false;
isoImage.edition = lib.mkForce "minimal";
isoImage.edition = lib.mkOverride 500 "minimal";
}