Files
linda-portfolio/shell.nix
2026-06-22 05:51:46 +03:00

13 lines
170 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_26
gnumake
];
shellHook = ''
export COREPACK_ENABLE_STRICT=0
'';
}