mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
Fix the VM tests
Work around https://github.com/NixOS/nixpkgs/issues/271146 until we can depend on a Nixpkgs version containing https://github.com/NixOS/nixpkgs/pull/271423
This commit is contained in:
parent
dfc0cee702
commit
589fb105f3
2 changed files with 5 additions and 0 deletions
|
@ -7,6 +7,10 @@
|
||||||
# Also, do not grab arbitrary further staging commits. This PR was
|
# Also, do not grab arbitrary further staging commits. This PR was
|
||||||
# carefully made to be based on release-23.05 and just contain
|
# carefully made to be based on release-23.05 and just contain
|
||||||
# rebuild-causing changes to packages that Nix actually uses.
|
# rebuild-causing changes to packages that Nix actually uses.
|
||||||
|
#
|
||||||
|
# Once this is updated to something containing
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/271423, don't forget
|
||||||
|
# to remove the `nix.checkAllErrors = false;` line in the tests.
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/staging-23.05";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/staging-23.05";
|
||||||
inputs.nixpkgs-regression.url = "github:NixOS/nixpkgs/215d4d0fd80ca5163643b03a33fde804a29cc1e2";
|
inputs.nixpkgs-regression.url = "github:NixOS/nixpkgs/215d4d0fd80ca5163643b03a33fde804a29cc1e2";
|
||||||
inputs.lowdown-src = { url = "github:kristapsdz/lowdown"; flake = false; };
|
inputs.lowdown-src = { url = "github:kristapsdz/lowdown"; flake = false; };
|
||||||
|
|
|
@ -10,6 +10,7 @@ let
|
||||||
hostPkgs = nixpkgsFor.${system}.native;
|
hostPkgs = nixpkgsFor.${system}.native;
|
||||||
defaults = {
|
defaults = {
|
||||||
nixpkgs.pkgs = nixpkgsFor.${system}.native;
|
nixpkgs.pkgs = nixpkgsFor.${system}.native;
|
||||||
|
nix.checkAllErrors = false;
|
||||||
};
|
};
|
||||||
_module.args.nixpkgs = nixpkgs;
|
_module.args.nixpkgs = nixpkgs;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue