nix: add impure nix-shell config

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-06-14 10:29:34 +05:30
parent e7febb507c
commit 7d103e5efc
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

3
default.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 ]; }