From eb9ad65e14c1775fcac77324721c033fa21763af Mon Sep 17 00:00:00 2001 From: jolheiser Date: Wed, 5 Jul 2023 14:32:30 -0500 Subject: [PATCH] fix: inputs Signed-off-by: jolheiser --- flake.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 52c3005..a83ec45 100644 --- a/flake.nix +++ b/flake.nix @@ -13,10 +13,7 @@ ]; forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); in { - legacyPackages = forAllSystems (system: - import ./default.nix { pkgs = import nixpkgs { inherit system; }; }); packages = forAllSystems (system: - nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) - self.legacyPackages.${system}); + import ./default.nix { pkgs = import nixpkgs { inherit system; }; }); }; }