diff --git a/flake.nix b/flake.nix index a83ec457ad5b8363a648c4aa6ed4ef7466fbe1c8..52c3005a0f6242c2d3cfd9b7574f63455d55015f 100644 --- a/flake.nix +++ b/flake.nix @@ -13,8 +13,11 @@ "armv7l-linux" ]; forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); in { + legacyPackages = forAllSystems (system: + import ./default.nix { pkgs = import nixpkgs { inherit system; }; }); packages = forAllSystems (system: + description = "jolheiser personal NUR repository"; { - "x86_64-linux" + self.legacyPackages.${system}); }; }