compose-lobsters/default.nix
Harsh Shandilya 7d103e5efc
nix: add impure nix-shell config
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-06-14 10:29:34 +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 ]; }