From 15b88cc1c55365ae4b804d61ea44d66a92920da6 Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Wed, 9 Feb 2022 13:46:31 +0000 Subject: [PATCH] update-flake: fix attribute path of pinned --- helper/update-flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/update-flake.nix b/helper/update-flake.nix index a93b07c..43fbd9c 100644 --- a/helper/update-flake.nix +++ b/helper/update-flake.nix @@ -11,7 +11,7 @@ in rec { # A pinned pkg is added to `stable` if the stable and unstable pkg versions # are identical. versions = let - pinned = flake.legacyPackages.x86_64-linux.nbPkgs.pinned; + pinned = flake.legacyPackages.x86_64-linux.pinned; pinnedPkgs = lib.filterAttrs (n: v: lib.isDerivation v) pinned; stable = pinned.pkgs; unstable = pinned.pkgsUnstable;