Initial commit

This commit is contained in:
heyarne 2022-01-14 14:21:57 +01:00
commit b1338541c4
14 changed files with 1401 additions and 0 deletions

19
flake.nix Normal file
View file

@ -0,0 +1,19 @@
{
description = "Inkpot frontend dev environment";
inputs.nixpkgs.url = github:NixOS/nixpkgs;
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
lib = pkgs.lib;
in {
devShell.${system} = pkgs.mkShell rec {
buildInputs = with pkgs; [
nodejs-16_x
nodePackages.npm
nodePackages.pnpm
];
};
};
}