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; }; }); }; }