ci.nix: Set nixos-unstable as reference nixpkgs
This commit is contained in:
parent
3171cf1c21
commit
cedf8be896
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
} (
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue