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
commit dfbb7a7c01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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