add bare metal runtime

This commit is contained in:
2024-06-29 18:11:25 +00:00
parent c743f49838
commit a1d8493242
6 changed files with 43 additions and 5 deletions

View File

@@ -19,15 +19,15 @@
{
packages = rec {
playground = space.playground.package;
default = playground;
default = pkgs.callPackage ./playground/runtime/engines/baremetal { services = [ space.playground.package ]; };
};
apps = rec {
playground = flake-utils.lib.mkApp { drv = space.playground.package; exePath = ""; };
default = playground;
default = flake-utils.lib.mkApp { drv = self.packages.${system}.default; };
};
devShells.default = pkgs.mkShell {
packages = [ pkgs.nixpkgs-fmt pkgs.nixpkgs-lint ];
packages = [ pkgs.nixpkgs-fmt ];
};
});
}