add example

This commit is contained in:
2023-06-10 18:08:31 +00:00
parent 72591b23c4
commit 23173d0875
11 changed files with 64 additions and 115 deletions

View File

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