compose-lobsters/shell.nix
Harsh Shandilya d657c81ff5
nix: rename nix-shell config to shell.nix
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-06-16 08:51:01 +05:30

3 lines
193 B
Nix

# 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 ]; }