Add a dev shell with node 18

This commit is contained in:
Tim Van Baak 2023-07-27 09:46:58 -07:00
parent f86db8753e
commit b424490003
1 changed files with 10 additions and 0 deletions

View File

@ -43,6 +43,16 @@
PS1="(develop) $PS1" PS1="(develop) $PS1"
''; '';
}; };
client = let
pkgs = nixpkgs.legacyPackages.${system};
in pkgs.mkShell {
packages = [
pkgs.nodejs_18
];
shellHook = ''
PS1="(client) $PS1"
'';
};
}; };
overlays.default = final: prev: { overlays.default = final: prev: {