update-flake: fix attribute path of pinned

This commit is contained in:
Jonas Nick 2022-02-09 13:46:31 +00:00
parent 0ac9d6f4c8
commit 15b88cc1c5
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.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;