From 056753909a5f565ce57528f30de01489e78b98e0 Mon Sep 17 00:00:00 2001 From: dadada Date: Mon, 11 Mar 2024 21:01:07 +0100 Subject: [PATCH] fix: override hydra's nix version nix-2.17 is marked as insecure --- overlays.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/overlays.nix b/overlays.nix index bf0588c..bd232b0 100644 --- a/overlays.nix +++ b/overlays.nix @@ -20,4 +20,8 @@ ]; recipemd = prev.python3Packages.toPythonApplication final.python3Packages.recipemd; }; + + insecure = final: prev: { + hydra_unstable = prev.hydra_unstable.override { nix = final.nixVersions.unstable; }; + }; }