hi im alinez not even tryingto hide it
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

nix shell

adam d437f07d 238c0c76

+21
+1
.envrc
··· 1 + use nix
+20
shell.nix
··· 1 + { 2 + pkgs ? import <nixpkgs> { }, 3 + }: 4 + 5 + let 6 + pkgInputs = with pkgs; [ nodejs ]; 7 + in 8 + pkgs.mkShell { 9 + packages = pkgInputs; 10 + 11 + shellHook = '' 12 + echo -ne "-----------------------------------\n " 13 + echo -n "${toString (map (pkg: "• ${pkg.name}\n") pkgInputs)}" 14 + echo "-----------------------------------" 15 + 16 + if [ ! -d node_modules ]; then 17 + npm install 18 + fi 19 + ''; 20 + }