From 1b61a16e8c19520ac85d9442dc121aecbe941015 Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Sun, 29 Jun 2025 18:23:27 -0700 Subject: [PATCH] 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 --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1a4b4a2..5ed8770 100644 --- a/flake.nix +++ b/flake.nix @@ -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; }; });