Skip to content

Commit

Permalink
add typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Sep 9, 2022
1 parent 1b8e642 commit 2c4f1e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake.nix
Expand Up @@ -7,5 +7,8 @@
outputs = inputs:
inputs.flake-utils.lib.eachDefaultSystem (system:
let pkgs = import inputs.nixpkgs { inherit system; };
in { devShell = pkgs.mkShell { packages = [ ]; }; });
in {
devShell =
pkgs.mkShell { packages = [ pkgs.nodePackages.typescript ]; };
});
}

0 comments on commit 2c4f1e6

Please sign in to comment.