flake: remove unneeded indirection in legacyPackages

Example: The nix-bitcoin electrs pkg can now be reached via flake attr
.#modulesPkgs.electrs
instead of
.#nbPkgs.modulesPkgs.electrs
This commit is contained in:
Erik Arvstedt 2022-02-03 20:46:24 +01:00
parent a313ffe58a
commit 16e2d4c8b7
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@
# Allow accessing the whole nested `nbPkgs` attrset (including `modulesPkgs`)
# via this flake.
# `packages` is not allowed to contain nested pkgs attrsets.
legacyPackages = { inherit nbPkgs; };
legacyPackages = nbPkgs;
defaultApp = apps.vm;