flake: Use the real nixUnstable from nixpkgs

Don’t let it pick our overriden lowdown as that would cause it not to be
cached in cache.nixos.org
This commit is contained in:
regnat 2021-09-20 14:37:09 +02:00
parent 2933d3c588
commit 81ed6ee201

View file

@ -259,11 +259,11 @@
# 'nix.perl-bindings' packages.
overlay = final: prev: {
# An older version of Nix to test against when using the daemon.
# Currently using `nixUnstable` as the stable one doesn't respect
# `NIX_DAEMON_SOCKET_PATH` which is needed for the tests.
nixStable = prev.nix;
# Forward from the previous stage as we dont want it to pick the lowdown override
nixUnstable = prev.nixUnstable;
nix = with final; with commonDeps pkgs; stdenv.mkDerivation {
name = "nix-${version}";
inherit version;