diff --git a/ci.nix b/ci.nix index 41bed40d752..61f6363d9b0 100644 --- a/ci.nix +++ b/ci.nix @@ -1,4 +1,4 @@ -# We need to set test-dvm to false becaue hydra has -# no access to the `dev` repo. This can go away once we join -# the monorepo. -import ./default.nix { test-dvm = false; } +# dev is now passed in from hydra +{ dev }: +let dvm = (import "${dev}/default.nix" {}).dvm; +in import ./default.nix { inherit dvm; }