mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #153620 from pennae/fix-installer-tests
nixos-install: copy channels before system eval
This commit is contained in:
commit
265fe132e6
1 changed files with 17 additions and 17 deletions
|
@ -143,6 +143,23 @@ export TMPDIR=${TMPDIR:-$tmpdir}
|
||||||
|
|
||||||
sub="auto?trusted=1"
|
sub="auto?trusted=1"
|
||||||
|
|
||||||
|
# Copy the NixOS/Nixpkgs sources to the target as the initial contents
|
||||||
|
# of the NixOS channel.
|
||||||
|
if [[ -z $noChannelCopy ]]; then
|
||||||
|
if [[ -z $channelPath ]]; then
|
||||||
|
channelPath="$(nix-env -p /nix/var/nix/profiles/per-user/root/channels -q nixos --no-name --out-path 2>/dev/null || echo -n "")"
|
||||||
|
fi
|
||||||
|
if [[ -n $channelPath ]]; then
|
||||||
|
echo "copying channel..."
|
||||||
|
mkdir -p "$mountPoint"/nix/var/nix/profiles/per-user/root
|
||||||
|
nix-env --store "$mountPoint" "${extraBuildFlags[@]}" --extra-substituters "$sub" \
|
||||||
|
-p "$mountPoint"/nix/var/nix/profiles/per-user/root/channels --set "$channelPath" --quiet \
|
||||||
|
"${verbosity[@]}"
|
||||||
|
install -m 0700 -d "$mountPoint"/root/.nix-defexpr
|
||||||
|
ln -sfn /nix/var/nix/profiles/per-user/root/channels "$mountPoint"/root/.nix-defexpr/channels
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# Build the system configuration in the target filesystem.
|
# Build the system configuration in the target filesystem.
|
||||||
if [[ -z $system ]]; then
|
if [[ -z $system ]]; then
|
||||||
outLink="$tmpdir/system"
|
outLink="$tmpdir/system"
|
||||||
|
@ -167,23 +184,6 @@ nix-env --store "$mountPoint" "${extraBuildFlags[@]}" \
|
||||||
--extra-substituters "$sub" \
|
--extra-substituters "$sub" \
|
||||||
-p "$mountPoint"/nix/var/nix/profiles/system --set "$system" "${verbosity[@]}"
|
-p "$mountPoint"/nix/var/nix/profiles/system --set "$system" "${verbosity[@]}"
|
||||||
|
|
||||||
# Copy the NixOS/Nixpkgs sources to the target as the initial contents
|
|
||||||
# of the NixOS channel.
|
|
||||||
if [[ -z $noChannelCopy ]]; then
|
|
||||||
if [[ -z $channelPath ]]; then
|
|
||||||
channelPath="$(nix-env -p /nix/var/nix/profiles/per-user/root/channels -q nixos --no-name --out-path 2>/dev/null || echo -n "")"
|
|
||||||
fi
|
|
||||||
if [[ -n $channelPath ]]; then
|
|
||||||
echo "copying channel..."
|
|
||||||
mkdir -p "$mountPoint"/nix/var/nix/profiles/per-user/root
|
|
||||||
nix-env --store "$mountPoint" "${extraBuildFlags[@]}" --extra-substituters "$sub" \
|
|
||||||
-p "$mountPoint"/nix/var/nix/profiles/per-user/root/channels --set "$channelPath" --quiet \
|
|
||||||
"${verbosity[@]}"
|
|
||||||
install -m 0700 -d "$mountPoint"/root/.nix-defexpr
|
|
||||||
ln -sfn /nix/var/nix/profiles/per-user/root/channels "$mountPoint"/root/.nix-defexpr/channels
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Mark the target as a NixOS installation, otherwise switch-to-configuration will chicken out.
|
# Mark the target as a NixOS installation, otherwise switch-to-configuration will chicken out.
|
||||||
mkdir -m 0755 -p "$mountPoint/etc"
|
mkdir -m 0755 -p "$mountPoint/etc"
|
||||||
touch "$mountPoint/etc/NIXOS"
|
touch "$mountPoint/etc/NIXOS"
|
||||||
|
|
Loading…
Reference in a new issue