Merge pull request #279174 from SuperSandro2000/iso-minimal-override

nixos/installation-cd-minimal: allow overwriting isoImage.edition with mkForce like other options
This commit is contained in:
Nick Cao
2024-01-14 15:26:29 -05:00
committed by GitHub
@@ -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";
}