update-flake: fix attribute path of pinned

This was missed in d69524143b.
This commit is contained in:
Jonas Nick 2022-01-01 16:19:06 +00:00
parent bb9f0b54ca
commit a2c01e5a56
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
1 changed files with 1 additions and 1 deletions

View File

@ -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.nbPkgs.x86_64-linux.pinned;
pinned = flake.legacyPackages.x86_64-linux.nbPkgs.pinned;
pinnedPkgs = lib.filterAttrs (n: v: lib.isDerivation v) pinned;
stable = pinned.pkgs;
unstable = pinned.pkgsUnstable;