nix: rename nix-shell config to shell.nix

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-06-16 08:51:01 +05:30
parent 87ef6506fa
commit d657c81ff5
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

3
shell.nix Normal file
View file

@ -0,0 +1,3 @@
# This is a nix-shell configuration to load nodejs in an impure shell, which
# is required by Spotless to format XML code.
with import <nixpkgs> { }; mkShell { buildInputs = [ nodejs-16_x ]; }