added LinkedIn Support

This commit is contained in:
specCon18 2024-04-28 05:08:55 -04:00
commit 3d1ecd4043
9 changed files with 970 additions and 0 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
description = "A js development environment";
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;
overlays = [];
};
in
{
devShell = pkgs.mkShell {
buildInputs = [
pkgs.nodejs_20
pkgs.yarn
];
};
});
}