Initial commit
This commit is contained in:
commit
b1338541c4
14 changed files with 1401 additions and 0 deletions
19
flake.nix
Normal file
19
flake.nix
Normal 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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue