Merge pull request #100136 from xaverdh/nixos-install-support-impure

nixos-install: pass through impure flag

Changed files
+7 -1
nixos
doc
modules
installer
+6
nixos/doc/manual/man-nixos-install.xml
···
</arg>
<arg>
<arg choice='plain'>
<option>--channel</option>
</arg>
···
</arg>
<arg>
+
<group choice='req'>
+
<arg choice='plain'><option>--impure</option></arg>
+
</group>
+
</arg>
+
+
<arg>
<arg choice='plain'>
<option>--channel</option>
</arg>
+1 -1
nixos/modules/installer/tools/nixos-install.sh
···
--no-bootloader)
noBootLoader=1
;;
-
--show-trace)
extraBuildFlags+=("$i")
;;
--help)
···
--no-bootloader)
noBootLoader=1
;;
+
--show-trace|--impure)
extraBuildFlags+=("$i")
;;
--help)