it-fsm/flake.nix

22 lines
496 B
Nix
Raw Normal View History

2022-11-19 16:33:13 +03:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
deno
nodejs-18_x
nodePackages.typescript
];
};
});
}