diff --git a/nixos/modules/installer/cd-dvd/channel.nix b/nixos/modules/installer/cd-dvd/channel.nix index 2f91cd39881d..159a9ca28c3e 100644 --- a/nixos/modules/installer/cd-dvd/channel.nix +++ b/nixos/modules/installer/cd-dvd/channel.nix @@ -45,6 +45,10 @@ in ln -s /nix/var/nix/profiles/per-user/root/channels /root/.nix-defexpr/channels mkdir -m 0755 -p /var/lib/nixos touch /var/lib/nixos/did-channel-init + echo "pinning the nixpkgs registry entry to NixOS/Nixpkgs sources..." + ${config.nix.package.out}/bin/nix \ + --extra-experimental-features 'nix-command flakes' \ + registry pin nixpkgs ${toString pkgs.path} fi ''; }