From f1fc0737be85f426de9cc99ddcfe3c878c413d97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Sun, 9 Feb 2020 11:44:15 +0900 Subject: [PATCH] shell.nix: Add nix environment --- shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..1fc5626 --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +with import {}; + +runCommand "www" { + buildInputs = [ + python3 + nodejs + ]; +} ""