diff --git a/flake.nix b/flake.nix index 0c8cc36..6180d28 100644 --- a/flake.nix +++ b/flake.nix @@ -40,5 +40,14 @@ packages = forAllSystems (system: nixpkgsFor.${system}); defaultPackage = forAllSystems (system: self.packages.${system}.kalker); + + apps = forAllSystems (system: { + kalker = { + type = "app"; + program = "${self.packages.${system}.kalker}/bin/kalker"; + }; + }); + + defaultApp = forAllSystems (system: self.apps.${system}.kalker); }; }