diff --git a/flake.nix b/flake.nix index 4b44119..2d839e2 100644 --- a/flake.nix +++ b/flake.nix @@ -28,20 +28,10 @@ inputsFrom = builtins.attrValues (packages system); NIXPKGS_PANDOC_FILTERS_PATH = "${nixpkgs + "/doc/build-aux/pandoc-filters"}"; }; - - apps = system: - { - flake-info = { - type = "app"; - program = "${(packages system).flake-info}/bin/flake-info"; - }; - }; in { defaultPackage = forAllSystems (mkPackage ./.); packages = forAllSystems packages; devShell = forAllSystems devShell; - apps = forAllSystems apps; - defaultApp = forAllSystems (system: (apps system).flake-info); }; }