mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
13 lines
236 B
Nix
13 lines
236 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs-18_x
|
|
nodePackages.npm
|
|
];
|
|
shellHook =
|
|
''
|
|
cd /home/aaronh/Projects/system76/docs
|
|
npm ci
|
|
npm start
|
|
'';
|
|
}
|