Skip to content

Commit

Permalink
ci.nix: Set nixos-unstable as reference nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
roberth committed Jun 3, 2021
1 parent 3171cf1 commit cedf8be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nix/ci.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ in
dimension "Nixpkgs version" {
"nixos-20_09" = {
nixpkgsSource = "nixos-20.09";
isReferenceNixpkgs = true;
enableDoc = true;
dockerSupportsSystemd = true;
nixosHasPodmanDockerSocket = false;
Expand All @@ -18,6 +17,7 @@ dimension "Nixpkgs version" {
};
"nixos-unstable" = {
nixpkgsSource = "nixos-unstable";
isReferenceNixpkgs = true; # match ./default.nix
enableDoc = true;
};
} (
Expand Down
2 changes: 1 addition & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit cedf8be

Please sign in to comment.