shell.nix: Add nix environment

This commit is contained in:
Tristan Daniël Maat 2020-02-09 11:44:15 +09:00
parent bd2463a663
commit f1fc0737be
Signed by: tlater
GPG key ID: 49670FD774E43268

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
with import <nixpkgs> {};
runCommand "www" {
buildInputs = [
python3
nodejs
];
} ""