Expose everything under legacyPackages instead of packages

every attribute in packages.{system}.* is expected to be a derivation (you can see this if you run nix flake check), legacyPackages is explicitly for nixpkgs and nixpkgs-style attrsets combining packages and functions and sets of packages
This commit is contained in:
Shelvacu
2025-06-29 18:23:27 -07:00
committed by Shelvacu on fw
parent affcea3dd9
commit 1b61a16e8c

View File

@@ -12,7 +12,7 @@
pkgs = import inputs.nixpkgs { inherit system; };
lib = pkgs.lib;
in {
packages = import ./tf2/packages {
legacyPackages = import ./tf2/packages {
inherit pkgs lib;
};
});