From 08265f17004a20712f87c7de017dd1ec31647c74 Mon Sep 17 00:00:00 2001 From: Tomo <68489118+tomodachi94@users.noreply.github.com> Date: Tue, 16 Apr 2024 13:47:09 -0700 Subject: [PATCH] wip --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 6348cb5..16991ae 100644 --- a/flake.nix +++ b/flake.nix @@ -72,10 +72,10 @@ ]; }; - packages = tomolib.forAllSystems (system: - import ./pkgs { pkgs = nixpkgs.legacyPackages.${system}; } + packages = tomolib.forAllSystems (pkgs: + import ./pkgs { inherit pkgs; } ); - legacyPackages = tomolib.forAllSystems (system: (packages.${system} // { lib = tomolib; })); + /* legacyPackages = tomolib.forAllSystems (system: (packages.${system} // { lib = tomolib; })); */ devShells = tomolib.forAllSystems (pkgs: import ./lib/shells.nix { inherit pkgs home-manager; }); };