alys.phundrak.com/shell.nix

9 lines
124 B
Nix
Raw Normal View History

2024-03-09 09:44:46 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2024-06-27 05:56:08 +00:00
nativeBuildInputs = with pkgs; [
nodejs_20
2024-03-09 09:44:46 +00:00
];
shellHook = ''
'';
}