diff --git a/flake.nix b/flake.nix index 1071f2a..86f05c4 100644 --- a/flake.nix +++ b/flake.nix @@ -46,8 +46,10 @@ packages = { inherit (pkgs) hello; }; packages.default = self.packages.${system}.hello; packages.container = pkgs.callPackage ./container.nix { package = packages.default; }; + apps.hello = flake-utils.lib.mkApp { drv = packages.default; }; defaultApp = apps.hello; + devShells.default = import ./shell.nix { inherit pkgs; }; } );