about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--shell.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/shell.nix b/shell.nix
index b31e9b4..18c24f9 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,10 +1,8 @@
-{ pkgs ? import <nixpkgs> {} }:
+{ pkgs ? import <nixpkgs> { } }:
 pkgs.mkShell
 {
   buildInputs = with pkgs; [
     nodejs
     nodePackages.ts-node
   ];
-
 }
-