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

@@ -1,5 +1,7 @@
{ config ? import ../../config { } }:
config.nixpkgs.writeScript "python-example-web-server" ''
#! /usr/bin/env sh
${config.nixpkgs.python3}/bin/python -m http.server ${config.playground.port}
''