ci.nix: Set nixos-unstable as reference nixpkgs

This commit is contained in:
Robert Hensing 2021-06-03 10:15:03 +02:00
parent 3171cf1c21
commit cedf8be896
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,6 @@ in
dimension "Nixpkgs version" {
"nixos-20_09" = {
nixpkgsSource = "nixos-20.09";
isReferenceNixpkgs = true;
enableDoc = true;
dockerSupportsSystemd = true;
nixosHasPodmanDockerSocket = false;
@ -18,6 +17,7 @@ dimension "Nixpkgs version" {
};
"nixos-unstable" = {
nixpkgsSource = "nixos-unstable";
isReferenceNixpkgs = true; # match ./default.nix
enableDoc = true;
};
} (

View file

@ -1,5 +1,5 @@
{ sources ? import ./sources.nix
, nixpkgsName ? "nixos-unstable"
, nixpkgsName ? "nixos-unstable" # match ./ci.nix isReferenceNixpkgs
, nixpkgsSrc ? sources.${nixpkgsName}
, system ? builtins.currentSystem
, dockerSupportsSystemd ? false