From 7d103e5efc6edc7ca7941e6e89a91367be29e087 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 14 Jun 2021 10:29:34 +0530 Subject: [PATCH] nix: add impure nix-shell config Signed-off-by: Harsh Shandilya --- default.nix | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 00000000..a6b58a05 --- /dev/null +++ b/default.nix @@ -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 { }; mkShell { buildInputs = [ nodejs-16_x ]; }