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

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

authored by Nick Cao and committed by GitHub dfbb7a7c b9dc8014

+2 -2
+2 -2
nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
··· 18 18 # not including it may cause annoying cache misses in the case of the NixOS manual. 19 19 documentation.doc.enable = lib.mkOverride 500 true; 20 20 21 - fonts.fontconfig.enable = lib.mkForce false; 21 + fonts.fontconfig.enable = lib.mkOverride 500 false; 22 22 23 - isoImage.edition = lib.mkForce "minimal"; 23 + isoImage.edition = lib.mkOverride 500 "minimal"; 24 24 }